1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?xml version="1.0" encoding="utf-8"?>
- <ScrollView
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:focusable="true"
- android:focusableInTouchMode="true"
- android:orientation="vertical">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:text="模拟游戏测试发行SDK和下级渠道SDK"/>
- <Button
- android:id="@+id/init"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="初始化"/>
- <Button
- android:id="@+id/login"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="登录"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="支付金额:"/>
- <EditText
- android:id="@+id/money"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:hint="充值金额"
- android:inputType="number"
- android:text="6"
- android:textColor="#e40000"
- android:textSize="18sp"/>
- </LinearLayout>
- <Button
- android:id="@+id/pay"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="支付"/>
- <Button
- android:id="@+id/submit"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="上传信息"/>
- <Button
- android:id="@+id/game_logout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="游戏调用注销"/>
- </LinearLayout>
- </ScrollView>
|