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.
session-android/res/layout/session_restore_banner.xml

74 lines
2.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
5 years ago
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/sessionRestoreBanner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
5 years ago
android:background="@color/dialog_background"
android:orientation="vertical"
5 years ago
android:elevation="10dp">
<View
android:layout_width="match_parent"
5 years ago
android:layout_height="1px"
android:background="?android:dividerHorizontal" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
5 years ago
android:orientation="vertical"
android:padding="@dimen/medium_spacing"
android:gravity="center_horizontal">
5 years ago
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
5 years ago
android:text="Session Out of Sync"
android:textColor="@color/text"
android:textStyle="bold"
android:textSize="@dimen/medium_font_size" />
5 years ago
<TextView
android:id="@+id/messageTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
5 years ago
android:layout_marginTop="@dimen/small_spacing"
android:text="@string/session_reset_banner_message"
5 years ago
android:textColor="@color/text"
android:textSize="@dimen/small_font_size"
android:textAlignment="center" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/small_spacing"
android:orientation="horizontal">
<Button
style="@style/UnimportantDialogButton"
android:id="@+id/dismissButton"
android:layout_width="0dp"
android:layout_height="@dimen/small_button_height"
android:layout_weight="1"
android:text="@string/session_reset_banner_dismiss_button_title" />
5 years ago
<Button
style="@style/ProminentDialogButton"
android:id="@+id/restoreButton"
android:layout_width="0dp"
android:layout_height="@dimen/small_button_height"
android:layout_weight="1"
android:layout_marginLeft="@dimen/medium_spacing"
android:text="@string/session_reset_banner_restore_button_title" />
5 years ago
</LinearLayout>
</LinearLayout>
5 years ago
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="?android:dividerHorizontal" />
5 years ago
</LinearLayout>