Home | History | Annotate | Download | only in layout
      1 <FrameLayout
      2     xmlns:android="http://schemas.android.com/apk/res/android"
      3     xmlns:app="http://schemas.android.com/apk/res/${packageName}"
      4     android:layout_width="match_parent"
      5     android:layout_height="match_parent">
      6 
      7     <${packageName}.${viewClass}
      8         android:background="#ccc"
      9         android:layout_width="300dp"
     10         android:layout_height="300dp"
     11         android:paddingLeft="20dp"
     12         android:paddingBottom="40dp"
     13         app:exampleDimension="24sp"
     14         app:exampleColor="#33b5e5"
     15         app:exampleString="Hello, ${viewClass}"
     16         app:exampleDrawable="@android:drawable/ic_menu_add" />
     17 
     18 </FrameLayout>