Advertisement
Guest User

Untitled

a guest
Jul 8th, 2012
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:id="@+id/dialog_linearLayout"
  5. android:orientation="horizontal"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:padding="10dp">
  9.  
  10. <ImageView
  11. android:id="@+id/dialog_image"
  12. android:src="@drawable/icon"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:paddingRight="10dp"/>
  16.  
  17. <TextView
  18. android:id="@+id/dialog_text"
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:text="please wait..."
  22. android:textSize="12dp"
  23. android:textColor="#ffffff"/>
  24.  
  25. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement