Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:paddingLeft="@dimen/activity_horizontal_margin"
- android:paddingRight="@dimen/activity_horizontal_margin"
- android:paddingTop="@dimen/activity_vertical_margin"
- android:paddingBottom="@dimen/activity_vertical_margin"
- android:background="@color/blue"
- tools:context="com.standapp.activity.error.ChromeExtErrorActivity">
- <RelativeLayout
- android:layout_centerInParent="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/relativeLayout">
- <!--TODO Refactor button background into a seperate file-->
- </RelativeLayout>
- <ImageView
- android:layout_width="wrap_content"
- android:id="@+id/iv_chromext_error"
- android:src="@drawable/sa_ic_extension"
- android:layout_height="wrap_content"
- android:scaleType="center"
- android:layout_centerVertical="true"
- android:layout_alignParentLeft="true"
- android:layout_alignParentStart="true"></ImageView>
- <TextView
- android:text="@string/chrome_ext_error"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textStyle="bold"
- android:textColor="@android:color/white"
- android:id="@+id/tv_chromeext_error"
- android:layout_alignTop="@+id/iv_chromext_error"
- android:layout_toRightOf="@+id/iv_chromext_error"
- android:layout_toEndOf="@+id/iv_chromext_error" />
- <Button
- android:text="@string/already_have_ext"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="15dp"
- android:id="@+id/btn_already_have_ext"
- android:layout_alignTop="@+id/relativeLayout"
- android:layout_alignRight="@+id/btn_chromeext_error_link"
- android:layout_alignEnd="@+id/btn_chromeext_error_link" />
- <Button
- android:text="@string/chrome_ext_error_link"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="15dp"
- android:id="@+id/btn_chromeext_error_link"
- android:layout_below="@+id/tv_chromeext_error"
- android:layout_alignRight="@+id/tv_chromeext_error"
- android:layout_alignEnd="@+id/tv_chromeext_error"
- android:layout_marginTop="10dp" />
- </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment