Blame view
GameSDKDemo/src/main/res/layout/fragment_payment.xml
3.02 KB
|
4a6edc661
|
1 2 |
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
e877dd7d0
|
3 4 5 6 7 8 9 10 |
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".PaymentInfoSubmitFragment">
<com.google.android.material.textfield.TextInputLayout
|
|
4a6edc661
|
11 12 13 14 15 16 17 |
android:id="@+id/product"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
|
|
e877dd7d0
|
18 19 |
android:hint="@string/hint_product" />
</com.google.android.material.textfield.TextInputLayout>
|
|
4a6edc661
|
20 |
|
|
e877dd7d0
|
21 |
<com.google.android.material.textfield.TextInputLayout |
|
4a6edc661
|
22 23 24 25 26 27 28 29 |
android:id="@+id/amount"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/hint_amount"
|
|
e877dd7d0
|
30 31 |
android:inputType="numberDecimal" />
</com.google.android.material.textfield.TextInputLayout>
|
|
4a6edc661
|
32 |
|
|
e877dd7d0
|
33 |
<com.google.android.material.textfield.TextInputLayout |
|
4a6edc661
|
34 35 36 37 38 |
android:id="@+id/currency"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
|
|
4a6edc661
|
39 40 |
android:layout_width="match_parent"
android:layout_height="wrap_content"
|
|
e877dd7d0
|
41 42 |
android:hint="@string/hint_currency" />
</com.google.android.material.textfield.TextInputLayout>
|
|
4a6edc661
|
43 |
|
|
e877dd7d0
|
44 |
<com.google.android.material.textfield.TextInputLayout |
|
4a6edc661
|
45 46 47 48 49 50 51 52 |
android:id="@+id/server_id"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
|
|
e877dd7d0
|
53 54 |
android:hint="@string/hint_server_id" />
</com.google.android.material.textfield.TextInputLayout>
|
|
4a6edc661
|
55 |
|
|
e877dd7d0
|
56 |
<com.google.android.material.textfield.TextInputLayout |
|
4a6edc661
|
57 58 59 60 61 62 63 64 |
android:id="@+id/role_id"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
|
|
e877dd7d0
|
65 66 |
android:hint="@string/hint_role_id" />
</com.google.android.material.textfield.TextInputLayout>
|
|
4a6edc661
|
67 |
|
|
e877dd7d0
|
68 |
<com.google.android.material.textfield.TextInputLayout |
|
4a6edc661
|
69 70 71 72 73 74 75 76 |
android:id="@+id/extra"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
|
|
e877dd7d0
|
77 78 |
android:hint="@string/hint_extra" />
</com.google.android.material.textfield.TextInputLayout>
|
|
4a6edc661
|
79 80 81 82 83 |
<Button
android:id="@+id/submit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
|
|
e877dd7d0
|
84 |
android:text="@string/go_pay" /> |
|
4a6edc661
|
85 86 87 |
</LinearLayout> |