Blame view
GameSDKDemo/src/main/res/layout/fragment_payment.xml
3.02 KB
| 4a6edc661  SDK v4.7.0:增加支付弹窗... | 1 2 | <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 
| e877dd7d0  重构版本4.8.0\ | 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  SDK v4.7.0:增加支付弹窗... | 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  重构版本4.8.0\ | 18 19 |               android:hint="@string/hint_product" />
      </com.google.android.material.textfield.TextInputLayout>
 | 
| 4a6edc661  SDK v4.7.0:增加支付弹窗... | 20 | |
| e877dd7d0  重构版本4.8.0\ | 21 | <com.google.android.material.textfield.TextInputLayout | 
| 4a6edc661  SDK v4.7.0:增加支付弹窗... | 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  重构版本4.8.0\ | 30 31 |               android:inputType="numberDecimal" />
      </com.google.android.material.textfield.TextInputLayout>
 | 
| 4a6edc661  SDK v4.7.0:增加支付弹窗... | 32 | |
| e877dd7d0  重构版本4.8.0\ | 33 | <com.google.android.material.textfield.TextInputLayout | 
| 4a6edc661  SDK v4.7.0:增加支付弹窗... | 34 35 36 37 38 |           android:id="@+id/currency"
          android:layout_width="match_parent"
          android:layout_height="wrap_content">
  
          <EditText
 | 
| 4a6edc661  SDK v4.7.0:增加支付弹窗... | 39 40 |               android:layout_width="match_parent"
              android:layout_height="wrap_content"
 | 
| e877dd7d0  重构版本4.8.0\ | 41 42 |               android:hint="@string/hint_currency" />
      </com.google.android.material.textfield.TextInputLayout>
 | 
| 4a6edc661  SDK v4.7.0:增加支付弹窗... | 43 | |
| e877dd7d0  重构版本4.8.0\ | 44 | <com.google.android.material.textfield.TextInputLayout | 
| 4a6edc661  SDK v4.7.0:增加支付弹窗... | 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  重构版本4.8.0\ | 53 54 |               android:hint="@string/hint_server_id" />
      </com.google.android.material.textfield.TextInputLayout>
 | 
| 4a6edc661  SDK v4.7.0:增加支付弹窗... | 55 | |
| e877dd7d0  重构版本4.8.0\ | 56 | <com.google.android.material.textfield.TextInputLayout | 
| 4a6edc661  SDK v4.7.0:增加支付弹窗... | 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  重构版本4.8.0\ | 65 66 |               android:hint="@string/hint_role_id" />
      </com.google.android.material.textfield.TextInputLayout>
 | 
| 4a6edc661  SDK v4.7.0:增加支付弹窗... | 67 | |
| e877dd7d0  重构版本4.8.0\ | 68 | <com.google.android.material.textfield.TextInputLayout | 
| 4a6edc661  SDK v4.7.0:增加支付弹窗... | 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  重构版本4.8.0\ | 77 78 |               android:hint="@string/hint_extra" />
      </com.google.android.material.textfield.TextInputLayout>
 | 
| 4a6edc661  SDK v4.7.0:增加支付弹窗... | 79 80 81 82 83 |   
      <Button
          android:id="@+id/submit"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
 | 
| e877dd7d0  重构版本4.8.0\ | 84 | android:text="@string/go_pay" /> | 
| 4a6edc661  SDK v4.7.0:增加支付弹窗... | 85 86 87 | </LinearLayout> |