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.
		
		
		
		
		
			
		
			
				
	
	
		
			60 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			XML
		
	
			
		
		
	
	
			60 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			XML
		
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
 | 
						|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | 
						|
              android:orientation="vertical"
 | 
						|
              android:layout_width="fill_parent"
 | 
						|
              android:layout_height="wrap_content">
 | 
						|
    <LinearLayout android:id="@+id/container"
 | 
						|
                  android:orientation="horizontal"
 | 
						|
                  android:layout_width="match_parent"
 | 
						|
                  android:layout_height="wrap_content"
 | 
						|
                  android:gravity="center_vertical"
 | 
						|
                  android:background="?reminder_header_background">
 | 
						|
 | 
						|
        <ImageView android:id="@+id/icon"
 | 
						|
                   android:layout_width="50dp"
 | 
						|
                   android:layout_height="50dp"
 | 
						|
                   android:src="@drawable/sms_selection_icon"
 | 
						|
                   android:padding="5dp"/>
 | 
						|
 | 
						|
        <LinearLayout android:id="@+id/reminder"
 | 
						|
                      android:layout_width="0dp"
 | 
						|
                      android:layout_height="wrap_content"
 | 
						|
                      android:layout_weight="1"
 | 
						|
                      android:layout_margin="10dp"
 | 
						|
                      android:orientation="vertical">
 | 
						|
 | 
						|
            <TextView android:id="@+id/reminder_title"
 | 
						|
                      android:layout_width="wrap_content"
 | 
						|
                      android:layout_height="wrap_content"
 | 
						|
                      android:layout_marginBottom="5dp"
 | 
						|
                      android:textColor="@color/white"
 | 
						|
                      android:textSize="18sp"/>
 | 
						|
 | 
						|
            <TextView android:id="@+id/reminder_text"
 | 
						|
                      android:layout_width="wrap_content"
 | 
						|
                      android:layout_height="wrap_content"
 | 
						|
                      android:fontFamily="sans-serif-light"
 | 
						|
                      android:textColor="@color/white"
 | 
						|
                      android:textSize="16sp"/>
 | 
						|
 | 
						|
        </LinearLayout>
 | 
						|
 | 
						|
        <LinearLayout android:layout_width="wrap_content"
 | 
						|
                      android:layout_height="match_parent"
 | 
						|
                      android:gravity="right|top"
 | 
						|
                      android:layout_marginLeft="15dp"
 | 
						|
                      android:orientation="vertical">
 | 
						|
 | 
						|
            <ImageButton android:id="@+id/cancel"
 | 
						|
                         android:layout_width="40dp"
 | 
						|
                         android:layout_height="40dp"
 | 
						|
                         android:padding="10dp"
 | 
						|
                         android:background="@drawable/touch_highlight_background"
 | 
						|
                         android:src="@drawable/ic_cancel_white_24dp"/>
 | 
						|
 | 
						|
          </LinearLayout>
 | 
						|
 | 
						|
    </LinearLayout>
 | 
						|
</LinearLayout>
 |