Splashscreen you need to use a theme appcompat theme or descendant with this activity

Example

The AppCompat support library provides themes to build apps with the Material Design specification. A theme with a parent of Theme.AppCompat is also required for an Activity to extend AppCompatActivity.

Show

The first step is to customize your theme’s color palette to automatically colorize your app.
In your app's res/styles.xml you can define:

<!-- inherit from the AppCompat theme --> <style name="AppTheme" parent="Theme.AppCompat"> <!-- your app branding color for the app bar --> <item name="colorPrimary">#2196f3</item> <!-- darker variant for the status bar and contextual app bars --> <item name="colorPrimaryDark">#1976d2</item> <!-- theme UI controls like checkboxes and text fields --> <item name="colorAccent">#f44336</item> </style>

Instead of Theme.AppCompat, which has a dark background, you can also use Theme.AppCompat.Light or Theme.AppCompat.Light.DarkActionBar.

You can customize the theme with your own colours. Good choices are in the Material design specification colour chart, and Material Palette. The "500" colours are good choices for primary (blue 500 in this example); choose "700" of the same hue for the dark one; and an a shade from a different hue as the accent colour. The primary colour is used for your app's toolbar and its entry in the overview (recent apps) screen, the darker variant to tint the status bar, and the accent colour to highlight some controls.

After creating this theme, apply it to your app in the AndroidManifest.xml and also apply the theme to any particular activity. This is useful for applying a AppTheme.NoActionBar theme, which lets you implement non-default toolbar configurations.

<application android:theme="@style/AppTheme" ...> <activity android:name=".MainActivity" android:theme="@style/AppTheme" /> </application>

You can also apply themes to individual Views using android:theme and a ThemeOverlay theme. For example with a Toolbar:

<android.support.v7.widget.Toolbar android:layout_width="match_parent" android:layout_height="wrap_content" android:background="?attr/colorPrimary" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />

or a Button:

<Button style="@style/Widget.AppCompat.Button.Colored" android:layout_width="wrap_content" android:layout_height="wrap_content" android:theme="@style/MyButtonTheme"/> <!-- res/values/themes.xml --> <style name="MyButtonTheme" parent="ThemeOverlay.AppCompat.Light"> <item name="colorAccent">@color/my_color</item> </style>


You need to use a Theme.AppCompat theme (or descendant) with this activity

Questions : You need to use a Theme.AppCompat theme (or descendant) with this activity

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00

696

Android Studio 0.4.5

Android documentation for creating custom anycodings_android-layout dialog boxes: anycodings_android-layout http://developer.android.com/guide/topics/ui/dialogs.html

If you want a custom dialog, you can instead anycodings_android-layout display an Activity as a dialog instead of anycodings_android-layout using the Dialog APIs. Simply create an anycodings_android-layout activity and set its theme to anycodings_android-layout Theme.Holo.Dialog in the <activity> anycodings_android-layout manifest element:

<activity android:theme="@android:style/Theme.Holo.Dialog" >

However, when I tried this I get the anycodings_android-layout following exception:

java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity

I am supporting the following, and I can't anycodings_android-layout using something greater than 10 for the min:

minSdkVersion 10 targetSdkVersion 19

In my styles I have the following:

<!-- Base application theme. --> <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

And in my manifest I have this for the anycodings_android-layout activity:

<application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:theme="@android:style/Theme.Holo.Light.Dialog" android:name="com.ssd.register.Dialog_update" android:label="@string/title_activity_dialog_update" > </activity>

Creating the dialog box like this was anycodings_android-layout something I was hopping to do, as I have anycodings_android-layout already completed the layout.

Can anyone tell me how I can get around this anycodings_android-layout problem?

Total Answers 30

29

Answers 1 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

The reason you are having this problem anycodings_android-layout is because the activity you are trying anycodings_android-layout to apply the dialog theme to is anycodings_android-layout extending ActionBarActivity which anycodings_android-layout requires the AppCompat theme to be anycodings_android-layout applied.

Update: Extending AppCompatActivity anycodings_android-layout would also have this problem

In this case, change the Java anycodings_android-layout inheritance from ActionBarActivity to anycodings_android-layout Activity and leave the dialog theme in anycodings_android-layout the manifest as it is, a non anycodings_android-layout Theme.AppCompat value


The general rule is that if you want anycodings_android-layout your code to support older versions of anycodings_android-layout Android, it should have the AppCompat anycodings_android-layout theme and the java code should extend anycodings_android-layout AppCompatActivity. If you have *an anycodings_android-layout activity that doesn't need this support, anycodings_android-layout such as you only care about the latest anycodings_android-layout versions and features of Android, you anycodings_android-layout can apply any theme to it but the java anycodings_android-layout code must extend plain old Activity.


NOTE: When change from AppCompatActivity anycodings_android-layout (or a subclass, ActionBarActivity), to anycodings_android-layout Activity, must also change the various anycodings_android-layout calls with "support" to the anycodings_android-layout corresponding call without "support". anycodings_android-layout So, instead of anycodings_android-layout getSupportFragmentManager, call anycodings_android-layout getFragmentManager.

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

mRahman

6

Answers 2 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

All you need to do is add anycodings_android-layout android:theme="@style/Theme.AppCompat.Light" anycodings_android-layout to your application tag in the anycodings_android-layout AndroidManifest.xml file.

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

miraj

6

Answers 3 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

Copying answer from @MarkKeen in the anycodings_android-layout comments above as I had the same anycodings_android-layout problem.

I had the error stated at the top of the anycodings_android-layout post and happened after I added an alert anycodings_android-layout dialog. I have all the relevant style anycodings_android-layout information in the manifest. My problem anycodings_android-layout was cured by changing a context anycodings_android-layout reference in the alert builder - I anycodings_android-layout changed:

new android.support.v7.app.AlertDialog.Builder(getApplicationContext())

to:

new android.support.v7.app.AlertDialog.Builder(this)

And no more problems.

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

joy

2

Answers 4 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

If you are using the application anycodings_android-layout context, like this:

final AlertDialog.Builder builder = new AlertDialog.Builder(getApplicationContext());

change it to an activity context like anycodings_android-layout this:

final AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

raja

4

Answers 5 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

min sdk is 10. ActionBar is available anycodings_android-layout from api level 11. So for 10 you would anycodings_android-layout be using AppCompat from the support anycodings_android-layout library for which you need to use anycodings_android-layout Theme.AppCompat or descendant of the anycodings_android-layout same.

Use

android:theme="@style/Theme.AppCompat" >

Or if you dont want action bar at the anycodings_android-layout top

android:theme="@style/Theme.AppCompat.NoActionBar">

More info @

http://developer.android.com/guide/topics/ui/actionbar.html

Edit:

I might have misread op post.

Seems op wants a Dialog with a Activity anycodings_android-layout Theme. So as already suggested by anycodings_android-layout Bobbake4 extend Activity instead of anycodings_android-layout ActionBarActivity.

Also have a look @ Dialog Attributes in anycodings_android-layout the link below

http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.4_r1/frameworks/base/core/res/res/values/themes.xml/

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

raja

3

Answers 6 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

I was experiencing this problem even anycodings_android-layout though my Theme was an AppCompat Theme anycodings_android-layout and my Activity was an AppCompatActivity anycodings_android-layout (or Activity, as suggested on other's anycodings_android-layout answers). So I cleaned, rebuild and anycodings_android-layout rerun the project.

(Build -> Clean Project ; Build -> anycodings_android-layout Rebuild Project ; Run -> Run)

It may seem dumb, but now it works anycodings_android-layout great!

Just hope it helps!

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

miraj

5

Answers 7 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

This is what fixed it for me: instead of anycodings_android-layout specifying the theme in manifest, I anycodings_android-layout defined it in onCreate for each activity anycodings_android-layout that extends ActionBarActivity:

@Override protected void onCreate(Bundle savedInstanceState) { setTheme(R.style.MyAppTheme); super.onCreate(savedInstanceState); setContentView(R.layout.my_activity_layout); ... }

Here MyAppTheme is a descendant of anycodings_android-layout Theme.AppCompat, and is defined in xml. anycodings_android-layout Note that the theme must be set before anycodings_android-layout super.onCreate and setContentView.

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

jidam

2

Answers 8 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

go to your styles and put the parent

parent="Theme.AppCompat"

instead of

parent="@android:style/Theme.Holo.Light"

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

raja

6

Answers 9 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

In my case i have no values-v21 file in anycodings_android-layout my res directory. Then i created it and anycodings_android-layout added in it following codes:

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> </style>

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

raja

3

Answers 10 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

Change the theme of the desired anycodings_android-layout Activity. This works for me:

<activity android:name="HomeActivity" android:screenOrientation="landscape" android:theme="@style/Theme.AppCompat.Light" android:windowSoftInputMode="stateHidden" />

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

jidam

5

Answers 11 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

Just Do

new AlertDialog.Builder(this)

Instead of

new AlertDialog.Builder(getApplicationContext())

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

miraj

5

Answers 12 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

I had such crash on Samsung devices even anycodings_android-layout though the activity did use anycodings_android-layout Theme.AppCompat. The root cause was anycodings_android-layout related to weird optimizations on anycodings_android-layout Samsung side:

- if one activity of your app has theme not inherited from Theme.AppCompat - and it has also `android:launchMode="singleTask"` - then all the activities that are launched from it will share the same Theme

My solution was just removing anycodings_android-layout android:launchMode="singleTask"

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

raja

3

Answers 13 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

If you need to extend ActionBarActivity anycodings_android-layout you need on your style.xml:

<!-- Base application theme. --> <style name="AppTheme" parent="AppTheme.Base"/> <style name="AppTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar"> <!-- Customize your theme here. -->

If you set as main theme of your anycodings_android-layout application as anycodings_android-layout android:Theme.Material.Light instead of anycodings_android-layout AppTheme.Base then you’ll get anycodings_android-layout an “IllegalStateException:You anycodings_android-layout need to use a Theme.AppCompat theme (or anycodings_android-layout descendant) with this anycodings_android-layout activity” error.

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

joy

5

Answers 14 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

I had the same problem, but it solved anycodings_android-layout when i put this on manifest: anycodings_android-layout android:theme="@style/Theme.AppCompat.

<application android:allowBackup="true" android:icon="@drawable/icon" android:label="@string/app_name_test" android:supportsRtl="true" android:theme="@style/Theme.AppCompat"> ... </application>

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

miraj

4

Answers 15 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

for me a solution, after trying all anycodings_android-layout solutions from here, was to change

<activity android:name="com.github.cythara.MainActivity" android:label="Main"> </activity>

to include a theme:

<activity android:name="com.github.cythara.MainActivity" android:theme="@style/Theme.AppCompat.NoActionBar" android:label="Main"> </activity>

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

miraj

3

Answers 16 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

In my case such issue was appear when i anycodings_android-layout tried to show Dialog. The problem was in anycodings_android-layout context, I've use getBaseContext() which anycodings_android-layout theoretically should return Activity anycodings_android-layout context, but appears its not, or it anycodings_android-layout return context before any Theme applied.

So I just replaced getBaseContexts() anycodings_android-layout with "this", and now it work as anycodings_android-layout expected.

Dialog.showAlert(this, title, message,....);

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

joy

2

Answers 17 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

You have came to this because you want anycodings_android-layout to apply Material Design in your theme anycodings_android-layout style in previous sdk versions to 21. anycodings_android-layout ActionBarActivity requires AppThemeso if anycodings_android-layout you also want to prevent your own anycodings_android-layout customization about your AppTheme, only anycodings_android-layout you have to change in your styles.xml anycodings_android-layout (previous to sdk 21) so this way, can anycodings_android-layout inherit for an App Compat theme.

<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">

for this:

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

miraj

3

Answers 18 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

I had an activity with theme anycodings_android-layout <android:theme="@android:style/Theme.Dialog"> anycodings_android-layout used for showing dialog in my appWidget anycodings_android-layout and i had same problem

i solved this error by changing activity anycodings_android-layout code like below:

@Override protected void onCreate(Bundle savedInstanceState) { setTheme(R.style.Theme_AppCompat_Dialog); //this line i added super.onCreate(savedInstanceState); setContentView(R.layout.activity_dialog); }

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

jidam

1

Answers 19 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

Make sure you are using an activity anycodings_android-layout context while creating a new Alert anycodings_android-layout Dialog and not an application or base anycodings_android-layout context.

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

joy

3

Answers 20 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

for me was solution to use anycodings_android-layout ContextThemeWrapper:

private FloatingActionButton getFAB() { Context context = new android.support.v7.view.ContextThemeWrapper(getContext(), R.style.AppTheme); FloatingActionButton fab = new FloatingActionButton(context); return fab;}

from Android - How to create FAB anycodings_android-layout programmatically?

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

jidam

5

Answers 21 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

I had this problem as well and what I anycodings_android-layout did to fix it, AND still use the Holo anycodings_android-layout theme was to take these steps:

first I replaced this import:

import android.support.v7.app.AppCompatActivity;

with this one:

import android.app.Activity;

then changed my extension from:

public class MyClass extends AppCompatActivity {//...

to this:

public class MyClass extends Activity {//...

And also had to change this import:

import android.support.v7.app.AlertDialog;

to this import:

import android.app.AlertDialog;

and then you can use your theme tag in anycodings_android-layout the manifest at the activity level:

android:theme="@android:style/Theme.Holo.Dialog" />

and lastly, (unless you have other anycodings_android-layout classes in your project that has to use anycodings_android-layout v7 appCompat) you can either clean and anycodings_android-layout rebuild your project or delete this anycodings_android-layout entry in the gradle build file at the anycodings_android-layout app level:

compile 'com.android.support:appcompat-v7:23.2.1'

if you have other classes in your anycodings_android-layout project that has to use v7 appCompat anycodings_android-layout then just clean and rebuild the project.

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

joy

2

Answers 22 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

In case the AndroidX SplashScreen anycodings_android-layout library brought you here ...

This is because Theme.SplashScreen also anycodings_android-layout has no anycodings_android-layout R.styleable.AppCompatTheme_windowActionBar:

if (!a.hasValue(R.styleable.AppCompatTheme_windowActionBar)) { a.recycle(); throw new IllegalStateException( "You need to use a Theme.AppCompat theme (or descendant) with this activity."); }

This requires switching the theme to the anycodings_android-layout postSplashScreenTheme, before calling anycodings_android-layout super():

@Override protected void onCreate(Bundle savedInstanceState) { /* When switching the theme to dark mode. */ if (savedInstanceState != null) { this.setTheme(R.style.AppTheme); } super.onCreate(savedInstanceState); /* When starting the Activity. */ if (savedInstanceState == null) { SplashScreen.installSplashScreen(this); } }

Then the Theme.SplashScreen from anycodings_android-layout AndroidManifest.xml won't interfere.


Also quite related: When using anycodings_android-layout Theme.MaterialComponents, there's a anycodings_android-layout bridge theme contained, which works as anycodings_android-layout substitute for Theme.AppCompat: anycodings_android-layout Theme.MaterialComponents.DayNight.NoActionBar.Bridge.

This Bridge theme works despite anycodings_android-layout Theme.MaterialComponents not inherits anycodings_android-layout from Theme.AppCompat:

<?xml version="1.0" encoding="utf-8"?> <resources> <style name="AppTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar.Bridge" /> <style name="AppTheme.SplashScreen" parent="Theme.SplashScreen" /> </resources>

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

raja

6

Answers 23 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

You have many solutions to that error.

  1. You should use Activity or anycodings_android-layout FragmentActivity instead of anycodings_android-layout ActionbarActivity or AppCompatActivity

  2. If you want use ActionbarActivity or anycodings_android-layout AppCompatActivity, you should change in anycodings_android-layout styles.xml Theme.Holo.xxxx to anycodings_android-layout Theme.AppCompat.Light (if necessary add anycodings_android-layout to DarkActionbar)

If you don't need advanced attributes anycodings_android-layout about action bar or AppCompat you don't anycodings_android-layout need to use Actionbar or AppCompat.

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

jidam

3

Answers 24 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

In Android manifest just change theme of anycodings_android-layout activity to AppTheme as follow code anycodings_android-layout snippet

<activity android:name=".MainActivity" android:label="@string/app_name" android:theme="@style/AppTheme"> </activity>

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

joy

3

Answers 25 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

In my experiences the problem was the anycodings_android-layout context where I showed my dialog. Inside anycodings_android-layout a button click I instantiate an anycodings_android-layout AlertDialog in this way:

builder = new AlertDialog.Builder(getApplicationContext());

But the context was not correct and anycodings_android-layout caused the error. I've changed it using anycodings_android-layout the application context in this way:

In declare section:

Context mContext;

in the onCreate method

mContext = this;

And finally in the code where I need the anycodings_android-layout AlertDialog:

start_stop = (Button) findViewById(R.id.start_stop); start_stop.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View v) { if (!is_running) { builder = new AlertDialog.Builder(mContext); builder.setMessage("MYTEXT") .setCancelable(false) .setPositiveButton("SI", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { Task_Started = false; startTask(); } }) .setNegativeButton("NO", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { dialog.cancel(); } }); AlertDialog alert = builder.create(); alert.show(); } } }

This is the solution for me.

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

miraj

5

Answers 26 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

I was getting this same problem. Because anycodings_android-layout i was creating custom navigation drawer. anycodings_android-layout But i forget to mention theme in my anycodings_android-layout manifest like this

android:theme="@style/Theme.AppCompat.NoActionBar"

As soon i added the above the theme to anycodings_android-layout my manifest it resolved the problem.

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

raja

3

Answers 27 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

Change your theme style parent to

parent="Theme.AppCompat"

This worked for me ...

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

raja

5

Answers 28 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

This one worked for me:

<application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name=".MainActivity" android:label="@string/app_name" android:theme="@style/Theme.AppCompat.NoActionBar"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application>

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

joy

6

Answers 29 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

Your Activity is extending anycodings_android-layout ActionBarActivity which requires the anycodings_android-layout AppCompat.theme to be applied. Change anycodings_android-layout from ActionBarActivity to Activity or anycodings_android-layout FragmentActivity, it will solve the anycodings_android-layout problem.

If you use no Action bar then :

android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

jidam

2

Answers 30 : of You need to use a Theme.AppCompat theme (or descendant) with this activity

This is when you want a AlertDialog in a anycodings_android-layout Fragment

AlertDialog.Builder adb = new AlertDialog.Builder(getActivity()); adb.setTitle("My alert Dialogue \n"); adb.setPositiveButton("OK", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { //some code } }); adb.setNegativeButton("Cancel", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { dialog.dismiss(); } }); adb.show();

0

2022-08-05T01:01:02+00:00 2022-08-05T01:01:02+00:00Answer Link

jidam