I.e. user should be able to choose values from 2 lists (4 options in each). Ideally it should 开发者_运维知识库look like drop down lists.
So you need two Spinners
in a Dialog
. OK, wrap spinners with a LinearLayout
and use Dialog.setContentView(View)
to embed the LinearLayout
into the dialog.
The tutorial on this.
精彩评论