Advertisement
Guest User

Untitled

a guest
Oct 13th, 2011
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.14 KB | None | 0 0
  1.    <LinearLayout android:orientation="horizontal"
  2.     android:layout_below="@id/fpp_name_layout"
  3.     android:id="@+id/fpp_ringtone_container"
  4.     android:layout_toRightOf="@id/fpp_photo_button"
  5.     android:layout_height="wrap_content"
  6.     android:layout_width="wrap_content"
  7.     android:layout_margin="2sp"
  8.     android:visibility="visible"
  9.     android:layout_alignBottom="@id/fpp_photo_button" >
  10.    
  11.     <ImageButton android:id="@+id/fpp_ringtone_preview_button"
  12.     android:layout_height="wrap_content"
  13.     android:layout_width="wrap_content"
  14.     android:src="@android:drawable/ic_media_play"
  15.     android:layout_marginRight="7sp"/>
  16.    
  17.     <TextView android:id="@+id/fpp_ringtone_title"
  18.     android:layout_marginLeft="15sp"
  19.     android:layout_width="wrap_content"
  20.     android:layout_height="wrap_content"
  21.     android:text="Filler"
  22.     android:layout_weight="1"
  23.     android:textColor="@color/black"
  24.     android:textSize="20sp"/>
  25.    
  26.     <ImageButton android:id="@+id/fpp_ringtone_edit"
  27.   android:layout_width="30dp"
  28.   android:layout_height="30dp"
  29.   android:scaleType="fitXY"
  30.   android:src="@android:drawable/ic_menu_edit" />
  31.    
  32.    </LinearLayout>
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement