You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			71 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			XML
		
	
			
		
		
	
	
			71 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			XML
		
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
 | 
						|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | 
						|
    android:layout_width="fill_parent"
 | 
						|
    android:layout_height="?android:attr/listPreferredItemHeight"
 | 
						|
    android:paddingRight="25dip">
 | 
						|
 | 
						|
    <View android:id="@+id/push_support_label"
 | 
						|
          android:layout_height="fill_parent"
 | 
						|
          android:layout_width="3dip"
 | 
						|
          android:layout_alignParentLeft="true"
 | 
						|
          android:background="#ff64a926"
 | 
						|
          android:visibility="visible"
 | 
						|
          />
 | 
						|
 | 
						|
    <TextView android:id="@+id/label"
 | 
						|
        android:layout_width="wrap_content"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:layout_alignParentLeft="true"
 | 
						|
        android:layout_alignParentBottom="true"
 | 
						|
        android:layout_marginBottom="8dip"
 | 
						|
        android:layout_marginTop="-8dip"
 | 
						|
        android:layout_marginLeft="14dip"
 | 
						|
        android:singleLine="true"
 | 
						|
        android:ellipsize="marquee"
 | 
						|
        android:textAppearance="?android:attr/textAppearanceSmall"
 | 
						|
        android:textStyle="bold"
 | 
						|
        android:visibility = "gone"
 | 
						|
    />
 | 
						|
 | 
						|
    <TextView android:id="@+id/number"
 | 
						|
    	android:visibility = "visible"
 | 
						|
        android:layout_width="wrap_content"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:layout_marginBottom="8dip"
 | 
						|
        android:layout_marginTop="-8dip"
 | 
						|
        android:layout_marginLeft="14dip"
 | 
						|
        android:layout_alignParentLeft="true"
 | 
						|
        android:layout_alignParentBottom="true"
 | 
						|
        android:singleLine="true"
 | 
						|
        android:ellipsize="marquee"
 | 
						|
        android:textAppearance="?android:attr/textAppearanceSmall"
 | 
						|
        android:fontFamily="sans-serif-light"
 | 
						|
    />
 | 
						|
 | 
						|
    <TextView android:id="@+id/name"
 | 
						|
        android:layout_width="match_parent"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:layout_above="@id/number"
 | 
						|
        android:layout_alignParentTop="true"
 | 
						|
        android:layout_alignParentLeft="true"
 | 
						|
        android:layout_marginBottom="1dip"
 | 
						|
        android:layout_marginLeft="14dip"
 | 
						|
	    android:checkMark="?android:attr/listChoiceIndicatorMultiple"
 | 
						|
        android:singleLine="true"
 | 
						|
        android:ellipsize="marquee"
 | 
						|
        android:gravity="center_vertical|left"
 | 
						|
        android:textAppearance="?android:attr/textAppearanceMedium"
 | 
						|
    />
 | 
						|
 | 
						|
    <CheckBox
 | 
						|
        android:id="@+id/check_box"
 | 
						|
        android:layout_width="wrap_content"
 | 
						|
        android:layout_height="wrap_content"
 | 
						|
        android:layout_alignParentRight="true"
 | 
						|
        android:layout_marginTop="13dp"
 | 
						|
        android:focusable="false"
 | 
						|
        android:clickable="false" />
 | 
						|
 | 
						|
</RelativeLayout>
 |