Advertisement
Guest User

Untitled

a guest
Jul 15th, 2012
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.24 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:layout_width="fill_parent"
  4.    android:layout_height="fill_parent"
  5.    android:orientation="vertical"
  6.    android:background="@android:color/background_light">
  7.  <LinearLayout
  8.     android:layout_width="wrap_content"
  9.     android:layout_height="wrap_content"
  10.     android:orientation="vertical"
  11.     android:layout_margin="1dp"
  12.     android:background="@android:color/darker_gray">
  13.      >
  14.      <LinearLayout
  15.      android:layout_width="wrap_content"
  16.      android:layout_height="wrap_content"
  17.      android:orientation="vertical"
  18.      android:layout_margin="20dp">
  19.       <TextView
  20.          android:layout_width="fill_parent"
  21.          android:layout_height="wrap_content"
  22.          android:text="It's a PopupWindow" />
  23.       <ImageView
  24.          android:layout_width="fill_parent"
  25.          android:layout_height="wrap_content"
  26.          android:src="@drawable/ic_launcher" />
  27.       <Button
  28.          android:id="@+id/dismiss"
  29.          android:layout_width="fill_parent"
  30.          android:layout_height="wrap_content"
  31.          android:text="Dismiss" />
  32.       </LinearLayout>
  33.  </LinearLayout>
  34. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement