how to add a widget which has two spinner items and put in a single dialog in android -
i trying design confirmation dialog has 2 lists (scrollable). 1 part shows numbers of foot , shows inches values. should in single dialog shown in image below. suggestions appreciated. i achieved ui using following code mycustomwidget.xml <linearlayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <textview android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="0.5" android:text="@string/txtheight" android:id="@+id/tvheight" /> <edittext android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="0.50" android:id="@+id/edittext_height" android:hint="select height" android:paddingbottom="8dp" ...