Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <RelativeLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingLeft="15dp"
- android:paddingRight="15dp" >
- <RelativeLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/rounded_red"
- android:layout_marginTop="15dp" >
- <TextView
- android:id="@+id/layout_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_margin="8dp"
- android:text="Name of popup" />
- <RelativeLayout
- android:id="@+id/layout_content"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="32dp"
- android:background="@drawable/rounded_gray"
- android:padding="10dp" >
- </RelativeLayout>
- </RelativeLayout>
- </RelativeLayout>
- <Button
- android:id="@+id/btn_popup_settings"
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_alignParentRight="true"
- android:layout_alignParentTop="true"
- android:layout_marginRight="4dp"
- android:layout_marginTop="4dp"
- android:background="@drawable/button_close" />
- </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement