| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- tools:context=".MainActivity">
- <ScrollView
- android:layout_weight="1"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:layout_weight="1"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <Button
- android:id="@+id/douyou_login"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="登录"/>
- <Button
- android:id="@+id/Pay"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="支付"/>
- <Button
- android:id="@+id/reportRoleLogin"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="角色登录信息上报"/>
- <Button
- android:id="@+id/reportRole"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="角色数据上报"/>
- <Button
- android:id="@+id/logout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="退出登录"/>
- <Button
- android:id="@+id/exit"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="退出app"/>
- <Button
- android:id="@+id/GroMoreAD"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="激励广告"/>
- <Button
- android:id="@+id/cash_out"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="红包提现"/>
- <Button
- android:visibility="gone"
- android:id="@+id/showQuestionnaire"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="问卷"/>
- </LinearLayout>
- </ScrollView>
- </LinearLayout>
|