2019-11-20 23:32:26 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-01-17 01:53:32 +00:00
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-11-20 23:32:26 +00:00
|
|
|
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"
|
2020-08-21 05:06:39 +00:00
|
|
|
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
|
2019-11-20 23:32:26 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/editDisplayNameText"
|
2020-08-21 05:06:39 +00:00
|
|
|
style="@style/BottomSheetActionItem"
|
|
|
|
android:drawableStart="@drawable/ic_baseline_edit_24"
|
2020-05-25 07:11:15 +00:00
|
|
|
android:text="@string/fragment_device_list_bottom_sheet_change_name_button_title"/>
|
2019-11-20 23:32:26 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/unlinkDeviceText"
|
2020-08-21 05:06:39 +00:00
|
|
|
style="@style/BottomSheetActionItem"
|
2019-11-20 23:32:26 +00:00
|
|
|
android:drawableStart="@drawable/ic_phonelink_erase_white_24dp"
|
2020-05-25 07:11:15 +00:00
|
|
|
android:text="@string/fragment_device_list_bottom_sheet_unlink_device_button_title" />
|
2019-11-20 23:32:26 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|