29 lines
805 B
XML
29 lines
805 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
>
|
|
<TextView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="18dip"
|
|
android:gravity="center"
|
|
android:text="即时音效"
|
|
/>
|
|
<Button
|
|
android:text="播放音效"
|
|
android:id="@+id/Button01"
|
|
android:gravity="center"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
</Button>
|
|
<Button
|
|
android:text="停止播放"
|
|
android:id="@+id/Button02"
|
|
android:gravity="center"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
</Button>
|
|
</LinearLayout>
|