Find Latitude and Longitude from Address in Android

Azhar
Updated on 02-Jul-2020 07:46:22

2K+ Views

This example demonstrates how do I find the latitude and longitude from address in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.                 Step 3 − Add the following code to src/MainActivity.javaimport android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; public class MainActivity extends AppCompatActivity {    Button addressButton;    TextView textViewAddress;    TextView textViewLatLong;    @Override    protected void ... Read More

MediaPlayer Class to Implement a Basic Audio Player in an Android App

Azhar
Updated on 02-Jul-2020 07:40:08

356 Views

This example demonstrates how do I create a Mediaplayer class to implement a basic audio player in android app.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.                                     Step 3 − Add the following code to src/MainActivity.javaimport android.media.MediaPlayer; import android.os.Handler; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.ImageButton; import android.widget.SeekBar; import android.widget.TextView; import android.widget.Toast; import java.util.concurrent.TimeUnit; public ... Read More

Remove Lines Between ListViews on Android

Azhar
Updated on 02-Jul-2020 07:39:12

354 Views

This example demonstrates how do I remove lines between listviews on android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.         Step 3 − Add the following code to src/MainActivity.javaimport android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.widget.ArrayAdapter; import android.widget.ListView; public class MainActivity extends AppCompatActivity {    ListView listView;    String[] mobilePhones = new String[] { "Samsung", "Iphone",    "Nokia", "Alcatel", "Blackberry", "Oppo", "Sony"};    @Override    protected void onCreate(Bundle savedInstanceState) {     ... Read More

Get and Store Device ID in Android

Azhar
Updated on 02-Jul-2020 07:38:37

2K+ Views

This example demonstrates how do I get and store Device ID in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.import android.provider.Settings; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.widget.TextView; public class MainActivity extends AppCompatActivity {    TextView textView;    @Override    protected void onCreate(Bundle savedInstanceState) {       super.onCreate(savedInstanceState);       setContentView(R.layout.activity_main);       textView = findViewById(R.id.textView);       String ID = Settings.Secure.getString(getContentResolver(),       Settings.Secure.ANDROID_ID);       textView.setText("Device ID: ... Read More

Get Selected Index of Radio Group in Android

Azhar
Updated on 02-Jul-2020 07:36:13

4K+ Views

This example demonstrates how do I get selected index of the radio group in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.                             Step 3 − Add the following code to src/MainActivity.javaimport android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.RadioButton; import android.widget.RadioGroup; import android.widget.TextView; public class MainActivity extends AppCompatActivity {    TextView textView;    Button button;    RadioGroup radioGroup;   ... Read More

Set a Particular Font for Button Text in Android

Azhar
Updated on 02-Jul-2020 07:35:39

1K+ Views

This example demonstrates how do I set a particular font for a button text in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.         Step 3 − Add the following code to src/MainActivity.javaimport android.graphics.Typeface; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import static android.graphics.Typeface.BOLD_ITALIC; public class MainActivity extends AppCompatActivity {    Button btnChangeFont, btnChangeFont2;    @Override    protected void onCreate(Bundle savedInstanceState) {       super.onCreate(savedInstanceState);       setContentView(R.layout.activity_main); ... Read More

Pass Values Between Fragments in Android

Azhar
Updated on 02-Jul-2020 07:35:03

1K+ Views

This example demonstrates how do I pass values between fragments in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.         Step 3 − Add the following code to src/MainActivity.javaimport android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; public class MainActivity extends AppCompatActivity implements FragmentOne.OnFragmentInteractionListener{    @Override    protected void onCreate(Bundle savedInstanceState) {       super.onCreate(savedInstanceState);       setContentView(R.layout.activity_main);    }    @Override    public boolean onCreateOptionsMenu(Menu menu) {     ... Read More

Prevent Dialog from Closing When Button is Clicked

Azhar
Updated on 02-Jul-2020 07:32:53

2K+ Views

This example demonstrates how do I prevent a dialog from closing when a button is clicked.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml. Step 3 − Add the following code to src/MainActivity.javaimport android.support.v7.app.AlertDialog; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.Toast; public class MainActivity extends AppCompatActivity {    @Override    protected void onCreate(Bundle savedInstanceState) {       super.onCreate(savedInstanceState);       setContentView(R.layout.activity_main);       final AlertDialog dialog = new ... Read More

Difference Between FillParent and Wrap Content in Android

Azhar
Updated on 02-Jul-2020 07:32:16

3K+ Views

This example demonstrates how do I show the difference between fillParent and wrap content in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.         Step 3 − Add the following code to src/MainActivity.javaimport android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity {    @Override    protected void onCreate(Bundle savedInstanceState) {       super.onCreate(savedInstanceState);       setContentView(R.layout.activity_main);    } }Step 4 − Add the following code to androidManifest.xml ... Read More

Implement Android Button Sheet Widget

Azhar
Updated on 02-Jul-2020 07:31:34

372 Views

This example demonstrates how do I implement android button sheet widget.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.                       Step 3 − Open build.gradle (Module:app) and add the following dependencyimplementation 'com.android.support:design:28.0.0' implementation 'com.jakewharton:butterknife:8.8.1' annotationProcessor 'com.jakewharton:butterknifecompiler:8.8.1'Step 4 − Create a layout (bottomsheet.xml) and the following code −                           ... Read More

Advertisements