[Solved] How to create this type of popup dialogue in Android? [closed]

Try this use custom dialog for this purpose: Create layout like this custom_dialog_layout: <?xml version=”1.0″ encoding=”utf-8″?> <LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android” android:layout_width=”match_parent” android:layout_height=”match_parent” android:orientation=”vertical”> <TextView android:layout_width=”match_parent” android:layout_height=”wrap_content” android:padding=”10dp” android:text=”title” android:textColor=”#000″ /> <TextView android:layout_width=”match_parent” android:layout_height=”wrap_content” android:padding=”10dp” android:text=”Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since … Read more