mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-14 03:39:05 +01:00
55 lines
1.6 KiB
XML
55 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="16dp"
|
|
android:paddingRight="16dp"
|
|
android:paddingTop="16dp">
|
|
|
|
<TextView
|
|
android:id="@+id/titleView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/set_contact_alias"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:textSize="@dimen/text_size_large"
|
|
android:textStyle="bold"/>
|
|
|
|
<EditText
|
|
android:id="@+id/aliasEditText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
android:hint="@string/set_contact_alias_hint"
|
|
android:inputType="textPersonName"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:textSize="@dimen/text_size_medium"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/margin_xxlarge"
|
|
android:layout_marginStart="@dimen/margin_xxlarge"
|
|
android:gravity="end"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/cancelButton"
|
|
style="@style/BriarButtonFlat.Negative"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/cancel"/>
|
|
|
|
<Button
|
|
android:id="@+id/setButton"
|
|
style="@style/BriarButtonFlat.Positive"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/set_alias_button"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|