We can return values from custom popup window to activity using listener. Example code: popup.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#cdcdcd" android:gravity="center" android:orientation="vertical" android:padding="50dp" > <View android:layout_width="match_parent" android:layout_height="1dp" /> <EditText android:id="@+id/bank_name" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_margin="3dp" android:hint="Name" android:inputType="textCapWords" /> <EditText android:id="@+id/bankacc_no" android:layou...
A plat with simple tutorial for native android developers.