apkfuckery/com.discord/res/layout-v17/widget_friends_add_dialog.xml

13 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout style="@style/UiKit.ViewGroup.Page.LinearLayout"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView android:padding="@dimen/uikit_spacing_large" android:layout_width="fill_parent" android:text="@string/add_friend" style="@style/UiKit.TextView.H1.Bold" />
<View style="@style/UiKit.Divider" />
<com.google.android.material.textfield.TextInputLayout android:layout_marginLeft="@dimen/uikit_spacing_medium" android:layout_marginRight="@dimen/uikit_spacing_medium" style="@style/UiKit.Form.Field.EditText.Wrap">
<androidx.appcompat.widget.AppCompatEditText android:id="@id/widget_friends_add_text_edit" android:hint="@string/add_friend_placeholder" android:imeOptions="actionDone" style="@style/UiKit.Form.Field.EditText.SingleLine" />
</com.google.android.material.textfield.TextInputLayout>
<LinearLayout style="@style/UiKit.Dialog.ButtonContainer">
<TextView android:id="@id/widget_friends_add_cancel" android:layout_marginRight="@dimen/uikit_spacing_medium" android:text="@string/cancel" android:layout_marginEnd="@dimen/uikit_spacing_medium" style="@style/UiKit.Button.Transparent.Fit" />
<TextView android:id="@id/widget_friends_add_send" android:text="@string/send" style="@style/UiKit.Button.Fit" />
</LinearLayout>
</LinearLayout>