- 論壇徽章:
- 0
|
使用MediaPlayer做的簡(jiǎn)單音樂播放器- <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:paddingLeft="@dimen/activity_horizontal_margin"
- android:paddingRight="@dimen/activity_horizontal_margin"
- android:paddingTop="@dimen/activity_vertical_margin"
- android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity"
- android:id="@+id/relativeLayout">
- <TextView android:text="音頻播放器" android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/textView" />
- <LinearLayout
- android:orientation="horizontal"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_below="@+id/textView"
- android:layout_alignParentLeft="true"
- android:layout_alignParentStart="true">
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="播放"
- android:id="@+id/button"
- android:layout_weight="0.33" />
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="停止"
- android:id="@+id/button2"
- android:layout_weight="0.33" />
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="暫停"
- android:id="@+id/button3"
- android:layout_weight="0.33" />
- </LinearLayout>
- </RelativeLayout>
復(fù)制代碼
031025331098776.png (71 KB, 下載次數(shù): 54)
下載附件
2015-05-28 11:18 上傳
|
|