21 lines
793 B
XML
21 lines
793 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="match_parent"
|
||
android:orientation="vertical">
|
||
|
||
<Button
|
||
android:id="@+id/button5"
|
||
android:layout_marginTop="64dp"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:onClick="onClick1"
|
||
android:text="点击一个通知栏(解决重复打开Activity的问题)" />
|
||
|
||
<Button
|
||
android:id="@+id/button6"
|
||
android:layout_width="match_parent"
|
||
android:onClick="onClick2"
|
||
android:layout_height="wrap_content"
|
||
android:text="模拟登陆(解决按钮重复点击的问题)" />
|
||
</LinearLayout> |