layout文件:
1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.android.com/tools" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent" 6 android:paddingBottom="@dimen/activity_vertical_margin" 7 android:paddingLeft="@dimen/activity_horizontal_margin" 8 android:paddingRight="@dimen/activity_horizontal_margin" 9 android:paddingTop="@dimen/activity_vertical_margin" 10 tools:context="com.hanqi.musicplay.MainActivity" 11 android:orientation="vertical"> 12 13 <TextView 14 android:layout_width="wrap_content" 15 android:layout_height="wrap_content" 16 android:text="播放状态:未播放" 17 android:id="@+id/tv_1"/> 18 <ProgressBar 19 android:layout_width="match_parent" 20 android:layout_height="wrap_content" 21 android:id="@+id/pb_1" 22 style="@android:style/Widget.ProgressBar.Horizontal"/> 23 <LinearLayout 24 android:layout_width="match_parent" 25 android:layout_height="wrap_content"> 26 <Button 27 android:layout_width="0dp" 28 android:layout_height="wrap_content" 29 android:layout_weight="1" 30 android:onClick="play_onClick" 31 android:text="播放" 32 android:background="@drawable/a4"/> 33 <Button 34 android:layout_width="0dp" 35 android:layout_height="wrap_content" 36 android:layout_weight="1" 37 android:onClick="pause_onClick" 38 android:text="暂停" 39 android:background="@drawable/a4"/> 40 <Button 41 android:layout_width="0dp" 42 android:layout_height="wrap_content" 43 android:layout_weight="1" 44 android:onClick="stop_onClick" 45 android:text="停止" 46 android:background="@drawable/a4"/> 47 <!--<Button--> 48 <!--android:layout_width="0dp"--> 49 <!--android:layout_height="wrap_content"--> 50 <!--android:layout_weight="1"--> 51 <!--android:onClick="exit_onClick"--> 52 <!--android:text="退出"/>--> 53 </LinearLayout> 54 <TextView 55 android:layout_width="match_parent" 56 android:layout_height="wrap_content" 57 android:id="@+id/tv_2"/> 58 <ImageView 59 android:layout_width="match_parent" 60 android:layout_height="wrap_content" 61 android:id="@+id/iv_1"/> 62 </LinearLayout>