Found 1631 Articles for Android

How to set ringtone in Android from Android activity?

Azhar
Updated on 02-Jul-2020 08:01:31

2K+ Views

This example demonstrates how do I set ringtone in android from android activity.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.annotation.SuppressLint; import android.content.Intent; import android.media.RingtoneManager; import android.net.Uri; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.TextView; public class MainActivity extends AppCompatActivity {    Button btn;    TextView txtView;    @Override    protected void onCreate(Bundle savedInstanceState) {       ... Read More

How to check if android editText is empty?

Azhar
Updated on 02-Jul-2020 08:03:10

4K+ Views

This example demonstrates how do I check if android editText is empty.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.text.TextUtils; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; public class MainActivity extends AppCompatActivity {    EditText editText;    Button button;    @Override    protected void onCreate(Bundle savedInstanceState) {       super.onCreate(savedInstanceState);       setContentView(R.layout.activity_main); ... Read More

How to draw a line in Android?

Azhar
Updated on 02-Jul-2020 08:02:17

2K+ Views

This example demonstrates how do I draw a line 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.content.Context; import android.content.res.Resources; import android.graphics.Color; import android.graphics.Paint; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.ImageView; import android.widget.RelativeLayout; import android.graphics.Canvas; import android.graphics.Bitmap; public class MainActivity extends AppCompatActivity {    Context context;    Resources resources;    RelativeLayout relativeLayout;    Button button;   ... Read More

How to Create a Tab Layout in Android App?

Azhar
Updated on 21-Aug-2019 10:54:21

5K+ Views

This example demonstrates how do I create a Tab Layout 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 dependency to create a tab layout −implementation 'com.android.support:design:28.0.0'Step 3 − Add the following code to res/layout/activity_main.xml.             Step 4 − Add the following code to src/MainActivity.javaimport android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.support.design.widget.TabLayout; import android.support.v4.view.ViewPager; public class MainActivity extends AppCompatActivity {    TabLayout tabLayout;    ViewPager viewPager;    @Override    protected void onCreate(Bundle ... Read More

How to show alert dialog in Android?

Azhar
Updated on 02-Jul-2020 07:47:47

524 Views

This example demonstrates how do I show alert dialog 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.app.AlertDialog; import android.content.DialogInterface; import 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);    }    @Override    public void onBackPressed() {       AlertDialog.Builder builder = ... Read More

How to complete address from latitude and longitude on Android?

Azhar
Updated on 02-Jul-2020 08:03:55

495 Views

This example demonstrates how do I complete address from latitude and logitude 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.app.AlertDialog; import android.content.DialogInterface; import android.content.Intent; import android.location.Location; import android.location.LocationManager; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.provider.Settings; import android.view.View; import android.widget.Button; import android.widget.TextView; public class MainActivity extends AppCompatActivity {    Button btnShowAddress;    TextView tvAddress;   ... Read More

How to display progress bar while loading a url to webView in Android?

Azhar
Updated on 02-Jul-2020 07:48:41

4K+ Views

This example demonstrates how do I display progress bar while loading a url to webview 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.Bitmap; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.webkit.WebView; import android.widget.ProgressBar; public class MainActivity extends AppCompatActivity {    WebView webview;    ProgressBar progressBar;    @Override    protected void onCreate(Bundle savedInstanceState) {       super.onCreate(savedInstanceState);   ... Read More

How to programmatically add buttons into a layout one by one in several lines in Android

Azhar
Updated on 21-Aug-2019 11:21:09

2K+ Views

This example demonstrates how do I programmatically add buttons into a layout one by one several lines 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.javapackage app.com.sample; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.widget.Button; import android.widget.LinearLayout; public class MainActivity extends AppCompatActivity {    @Override    protected void onCreate(Bundle savedInstanceState) {       super.onCreate(savedInstanceState);       setContentView(R.layout.activity_main);       LinearLayout layout = new ... Read More

How to create editText accepts Alphabets only in Android?

Azhar
Updated on 02-Jul-2020 07:50:43

2K+ Views

This example demonstrates how do I create edittext accepts alphabets only 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.text.InputFilter; import android.text.Spanned; import android.widget.EditText; public class MainActivity extends AppCompatActivity {    EditText editText;    @Override    protected void onCreate(Bundle savedInstanceState) {       super.onCreate(savedInstanceState);       setContentView(R.layout.activity_main);       editText = findViewById(R.id.editText);     ... Read More

How to find the 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

Advertisements