mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 18:45:19 +00:00
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
app:behavior_hideable="true"
|
|
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"
|
|
android:background="@color/dialog_background">
|
|
|
|
<TextView
|
|
android:id="@+id/editDisplayNameText"
|
|
style="@style/ActionItem"
|
|
android:drawableStart="@drawable/ic_edit_white_24dp"
|
|
android:textSize="@dimen/medium_font_size"
|
|
android:textColor="@color/text"
|
|
android:text="@string/fragment_device_list_bottom_sheet_change_name_button_title"/>
|
|
|
|
<TextView
|
|
android:id="@+id/unlinkDeviceText"
|
|
style="@style/ActionItem"
|
|
android:drawableStart="@drawable/ic_phonelink_erase_white_24dp"
|
|
android:textSize="@dimen/medium_font_size"
|
|
android:textColor="@color/text"
|
|
android:text="@string/fragment_device_list_bottom_sheet_unlink_device_button_title" />
|
|
|
|
</LinearLayout>
|