Home | History | Annotate | Download | only in layout
      1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      2     android:layout_width="match_parent"
      3     android:layout_height="@dimen/notification_height"
      4     >
      5 
      6     <Button
      7         android:id="@+id/veto"
      8         android:layout_width="48dp"
      9         android:layout_height="match_parent"
     10         android:layout_centerVertical="true"
     11         android:layout_alignParentRight="true"
     12         android:layout_marginRight="-80dp"
     13         android:background="@null"
     14         android:paddingRight="8dp"
     15         android:paddingLeft="8dp"
     16         />
     17 
     18     <ImageView
     19         android:id="@+id/large_icon"
     20         android:layout_width="@android:dimen/notification_large_icon_width"
     21         android:layout_height="@android:dimen/notification_large_icon_height"
     22         android:layout_alignParentTop="true"
     23         android:layout_alignParentLeft="true"
     24         android:scaleType="center"
     25         android:clickable="true"
     26         android:background="@*android:drawable/notify_panel_notification_icon_bg_tile"
     27         />
     28 
     29     <com.android.systemui.statusbar.LatestItemView android:id="@+id/content"
     30         android:layout_width="match_parent"
     31         android:layout_height="64dp"
     32         android:layout_alignParentTop="true"
     33         android:layout_toRightOf="@id/large_icon"
     34         android:layout_alignParentRight="true"
     35         android:focusable="true"
     36         android:clickable="true"
     37         android:background="@drawable/notification_row_bg"
     38         />
     39 
     40     <View
     41         android:layout_width="match_parent"
     42         android:layout_height="@dimen/notification_divider_height"
     43         android:layout_alignParentBottom="true"
     44         android:background="@drawable/status_bar_notification_row_background_color"
     45         />
     46 
     47 </RelativeLayout>
     48