Advertisement
Guest User

Untitled

a guest
Aug 27th, 2013
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="55dip"
  5. android:orientation="vertical" >
  6.  
  7. <TextView
  8. android:id="@+id/lblListItem"
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. android:layout_margin="10dp"
  12. android:layout_toLeftOf="@+id/delete"
  13. android:paddingBottom="5dp"
  14. android:paddingLeft="?android:attr/expandableListPreferredChildPaddingLeft"
  15. android:paddingTop="5dp"
  16. android:textColor="#000000"
  17. android:textSize="17dip" />
  18.  
  19. <Button
  20. android:id="@+id/delete"
  21. android:layout_width="30dp"
  22. android:layout_height="30dp"
  23. android:layout_alignParentRight="true"
  24. android:layout_centerVertical="true"
  25. android:layout_margin="10dp"
  26. android:focusableInTouchMode=""
  27. android:background="@drawable/delete_icon"
  28. android:contentDescription="@string/app_name" />
  29.  
  30. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement