Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| <RelativeLayout | |
| xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:id="@+id/native_outer_view" | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" | |
| android:background="@android:color/white"> | |
| <ImageView android:id="@+id/native_icon_image" | |
| android:layout_width="64dp" | |
| android:layout_height="64dp" | |
| android:background="@null" | |
| android:layout_alignParentLeft="true" | |
| android:layout_alignParentTop="true" | |
| android:layout_marginTop="10dp" | |
| android:layout_marginLeft="10dp" | |
| /> | |
| <TextView android:id="@+id/native_title" | |
| android:layout_width="match_parent" | |
| android:layout_marginLeft="84dp" | |
| android:layout_marginTop="32dp" | |
| android:layout_height="wrap_content" | |
| android:layout_alignParentTop="true" | |
| android:layout_alignParentLeft="true" | |
| android:textColor="@android:color/darker_gray" | |
| android:textStyle="bold" /> | |
| <TextView android:id="@+id/native_text" | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" | |
| android:layout_below="@+id/native_icon_image" | |
| android:layout_alignParentLeft="true" | |
| android:layout_marginLeft="10dp" | |
| android:layout_marginTop="10dp" | |
| android:textColor="@android:color/darker_gray" /> | |
| <ImageView android:id="@+id/native_main_image" | |
| android:layout_width="match_parent" | |
| android:layout_height="@dimen/native_main_image_height" | |
| android:background="@null" | |
| android:layout_marginTop="10dp" | |
| android:layout_marginLeft="10dp" | |
| android:layout_marginRight="10dp" | |
| android:layout_below="@+id/native_text" | |
| android:layout_alignParentLeft="true" | |
| android:contentDescription="@string/native_main_image" | |
| android:scaleType="centerCrop"/> | |
| <Button | |
| android:id="@+id/native_cta" | |
| android:layout_width="wrap_content" | |
| android:layout_height="35dp" | |
| android:text="@string/learn_more" | |
| android:textColor="@android:color/black" | |
| android:textStyle="bold" | |
| android:layout_marginRight="10dp" | |
| android:layout_marginTop="10dp" | |
| android:layout_below="@+id/native_main_image" | |
| android:textSize="12sp" | |
| android:layout_alignParentRight="true" | |
| android:clickable="true" | |
| android:paddingBottom="10dp" /> | |
| <ImageView | |
| android:id="@+id/native_privacy_information_icon_image" | |
| android:layout_width="40dp" | |
| android:layout_height="40dp" | |
| android:padding="10dp" | |
| android:layout_alignParentRight="true" | |
| android:layout_alignParentEnd="true" | |
| android:layout_alignParentTop="true" | |
| android:contentDescription="@string/native_privacy_information_icon_image"/> | |
| </RelativeLayout> |