Dialog box with EditText and Spinner

2019-04-06 20:31发布

I have a button that pops up with a dialog box on click.

I want the dialog box to have an EditText and a Spinner inside the dialog box.

I don't know how I'd set the view for it, I have the code for an AlertDialog and it works, it's just the EditText and Spinner that I need to place inside it then I can get on with the rest of the app's code.

Please can someone show me how I'd add an EditText and Spinner please?

2条回答
再贱就再见
2楼-- · 2019-04-06 21:13

You can create your own customdialog. Declare your views in a layout and load it with the help of AlertDialog like the one mentioned in the sample:

https://developer.android.com/guide/topics/ui/dialogs.html#CustomDialog

查看更多
可以哭但决不认输i
3楼-- · 2019-04-06 21:26

Two options I can think of:

1) Use AlertDialog's setView method.

2) Create an Activity with

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

in your AndroidManifest.

Number one should be easier to do while number two will give you more flexibility.

查看更多
登录 后发表回答