Thư viện tri thức trực tuyến
Kho tài liệu với 50,000+ tài liệu học thuật
© 2023 Siêu thị PDF - Kho tài liệu học thuật hàng đầu Việt Nam

Lập trình Android: Ứng dụng nghe nhạc pptx
Nội dung xem thử
Mô tả chi tiết
Trung tâm Tin học – ĐH KHTN
Nghe Nhạc trong Android
Trong bài viết này mình sẽ tạo 1 ứng dụng nho nhỏ để nghe nhạc trên Virtual Device.
Ứng dụng khá đơn giản, các bạn hoàn toàn có thể thêm vào các Project khác. Ứng
dụng của mình được làm như sau:
1/ Tạo Project :
Project name: DacMedia
Build Target: Android 2.3.3
Application name: DacMedia
Package name: com.dac.DacMedia
Create Activity: DacMedia
2/ Các bạn thiết kế giao diện như sau:
<?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:text="Nobilomo"
/>
<Button android:id="@+id/startPlayerBtn"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:text="Start Playing Audio" android:onClick="doClick" />
<Button android:id="@+id/pausePlayerBtn"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:text="Pause Player" android:onClick="doClick" />
<Button android:id="@+id/restartPlayerBtn"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:text="Restart Player" android:onClick="doClick" />
<Button android:id="@+id/stopPlayerBtn"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:text="Stop Player" android:onClick="doClick" />
</LinearLayout>
Lập trình Android – http://laptrinhdidong.vn Page 1