50 lines
1.8 KiB
XML
50 lines
1.8 KiB
XML
<LinearLayout android:id="@+id/adjust"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingHorizontal="10dp"
|
|
android:orientation="vertical"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:paddingBottom="5dp"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/adjust_templates" />
|
|
|
|
|
|
<com.google.android.material.chip.ChipGroup
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:selectionRequired="false"
|
|
app:singleLine="false"
|
|
app:chipSpacingVertical="0dp"
|
|
app:singleSelection="false">
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/newTemplate"
|
|
style="@style/Widget.Material3.Chip.Assist"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/new_template"
|
|
app:chipIcon="@drawable/ic_plus" />
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/editSelected"
|
|
style="@style/Widget.Material3.Chip.Assist"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/edit_selected"
|
|
app:chipIcon="@drawable/ic_edit" />
|
|
|
|
</com.google.android.material.chip.ChipGroup>
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/shortcut"
|
|
style="@style/Widget.Material3.Chip.Assist"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/shortcuts"
|
|
app:chipIcon="@drawable/ic_shortcut" />
|
|
|
|
</LinearLayout>
|