音乐xml

来源:互联网 发布:mac开机重设密码 编辑:程序博客网 时间:2024/05/03 14:11

RelativeLayout 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:paddingBottom=”@dimen/activity_vertical_margin”
android:paddingLeft=”@dimen/activity_horizontal_margin”
android:paddingRight=”@dimen/activity_horizontal_margin”
android:paddingTop=”@dimen/activity_vertical_margin”
tools:context=”.MainActivity” >

<SeekBar     android:id="@+id/seek"    android:layout_height="wrap_content"    android:layout_width="match_parent"    /><LinearLayout     android:layout_alignParentBottom="true"    android:layout_height="wrap_content"    android:layout_width="match_parent"    android:orientation="horizontal"    >    <Button         android:id="@+id/play"        android:layout_height="wrap_content"        android:layout_width="wrap_content"        android:text="播放"        />     <Button         android:id="@+id/pause"        android:layout_height="wrap_content"        android:layout_width="wrap_content"        android:text="暂停"        />    <Button         android:id="@+id/stop"        android:layout_height="wrap_content"        android:layout_width="wrap_content"        android:text="停止"        /></LinearLayout>

0 0