popwindow.xml
1007 Bytes
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/pop_select"
android:padding="15dp">
<ImageView
android:id="@+id/pop_finish"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_alignParentRight="true"
android:src="@drawable/popup_icon_close" />
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_below="@+id/pop_finish"
android:layout_marginTop="15dp">
<TextView
android:id="@+id/pop_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:textColor="#000" />
</android.support.v4.widget.NestedScrollView>
</RelativeLayout>