After Width: | Height: | Size: 367 B |
After Width: | Height: | Size: 8.4 KiB |
After Width: | Height: | Size: 321 B |
After Width: | Height: | Size: 440 B |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 566 B |
After Width: | Height: | Size: 17 KiB |
@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<shape android:shape="rectangle">
|
||||||
|
<solid android:color="@color/conversation_item_sent_shadow_light" />
|
||||||
|
<corners android:radius="@dimen/conversation_item_corner_radius" />
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
<item android:bottom="@dimen/conversation_item_drop_shadow_dist">
|
||||||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<solid android:color="#ffffffff" />
|
||||||
|
<corners android:radius="@dimen/conversation_item_corner_radius" />
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
</layer-list>
|
@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:layout_gravity="center">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:text="@string/app_name"
|
||||||
|
android:textColor="#55000000"
|
||||||
|
android:fontFamily="sans-serif-light"
|
||||||
|
android:id="@+id/title"
|
||||||
|
android:textSize="23sp" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
@ -1,43 +1,57 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
|
||||||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:id="@+id/scroll_parent"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:fillViewport="true"
|
android:fillViewport="true"
|
||||||
android:background="@drawable/background_pattern_repeat">
|
android:background="@drawable/background_pattern_repeat">
|
||||||
|
|
||||||
<LinearLayout android:id="@+id/prompt_layout"
|
<RelativeLayout android:id="@+id/prompt_layout"
|
||||||
android:padding="16dp"
|
android:layout_width="match_parent"
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:gravity="center_horizontal|center_vertical"
|
>
|
||||||
android:orientation="vertical">
|
|
||||||
|
|
||||||
<ImageView android:layout_width="wrap_content"
|
<ImageView android:id="@+id/watermark"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_gravity="center"
|
android:layout_centerHorizontal="true"
|
||||||
android:layout_marginBottom="24dp"
|
android:layout_marginBottom="50dp"
|
||||||
android:src="@drawable/padlock_prompt"/>
|
android:src="@drawable/lockscreen_watermark"
|
||||||
|
android:contentDescription="@string/PassphrasePromptActivity_watermark_content_description"
|
||||||
|
android:layout_marginTop="30dp"/>
|
||||||
|
|
||||||
<TextView style="@style/Registration.Label"
|
<RelativeLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:textAllCaps="true"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/prompt_passphrase_activity__textsecure_passphrase" />
|
android:layout_below="@id/watermark">
|
||||||
|
|
||||||
<EditText android:id="@+id/passphrase_edit"
|
<EditText android:id="@+id/passphrase_edit"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:inputType="textPassword"
|
android:inputType="textPassword"
|
||||||
android:layout_marginBottom="8dp"
|
android:layout_marginLeft="50dp"
|
||||||
android:singleLine="true"/>
|
android:layout_marginRight="50dp"
|
||||||
|
android:singleLine="true"
|
||||||
<Button android:id="@+id/ok_button"
|
android:background="@drawable/passphrase_input_background"
|
||||||
android:text="@string/prompt_passphrase_activity__unlock"
|
android:padding="10dp"/>
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
<ImageButton android:id="@+id/ok_button"
|
||||||
android:layout_gravity="right"
|
android:src="@drawable/ic_action_forward"
|
||||||
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
android:contentDescription="@string/PassphrasePromptActivity_ok_button_content_description"
|
||||||
|
android:background="@null"
|
||||||
</LinearLayout>
|
android:text="@string/prompt_passphrase_activity__unlock"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_alignParentRight="true"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
|
android:paddingLeft="5dp"
|
||||||
|
android:paddingTop="5dp"
|
||||||
|
android:paddingRight="10dp"
|
||||||
|
android:paddingBottom="5dp"/>
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
||||||
|
|
||||||
</ScrollView>
|
</ScrollView>
|