17 lines
No EOL
1.7 KiB
XML
17 lines
No EOL
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout android:orientation="vertical" style="@style/UiKit.Dialog.Container"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<com.discord.app.AppTextView android:id="@id/kick_user_title" android:text="@string/kick_user_title" style="@style/UiKit.Dialog.Title" />
|
|
<View style="@style/UiKit.Divider" />
|
|
<ScrollView android:layout_width="fill_parent" android:layout_height="0.0dip" android:layout_weight="1.0">
|
|
<LinearLayout android:focusable="true" android:focusableInTouchMode="true" style="@style/UiKit.ViewGroup.LinearLayout">
|
|
<com.discord.app.AppTextView android:id="@id/kick_user_body" android:text="@string/kick_user_body" style="@style/UiKit.Dialog.Body" />
|
|
<TextView android:text="@string/form_label_reason_kick" style="@style/UiKit.Dialog.Subtitle" />
|
|
<EditText android:id="@id/kick_user_reason" android:paddingLeft="4.0dip" android:paddingTop="0.0dip" android:paddingRight="4.0dip" android:layout_marginLeft="12.0dip" android:layout_marginRight="12.0dip" android:hint="@string/form_label_reason_kick" android:maxLength="512" android:inputType="textMultiLine" style="@style/UiKit.Form.Field.EditText" />
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
<LinearLayout style="@style/UiKit.Dialog.ButtonContainer">
|
|
<com.google.android.material.button.MaterialButton android:id="@id/kick_user_cancel" android:text="@string/cancel" style="@style/UiKit.Material.Button.Transparent.Fit" />
|
|
<com.google.android.material.button.MaterialButton android:id="@id/kick_user_confirm" android:text="@string/confirm" style="@style/UiKit.Material.Button.Red.Fit" />
|
|
</LinearLayout>
|
|
</LinearLayout> |