音樂播放器
音樂播放器,這個做品已經花了不少心思上面,包括實現播放,獲取歌詞,專輯等,網絡部分採用斷點下載方式獲取方法,這個播放器你們都懂的。php
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
|
/**
* 顯示音樂列表
*/
private
void
ShowMp3List() {
Cursor cursor = getContentResolver().query(
MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, media_info,
null
,
null
, MediaStore.Audio.Media.DEFAULT_SORT_ORDER);
if
(
null
!= cursor && cursor.getCount() >
0
) {
cursor.moveToFirst();
// 將遊標移動到初始位置
_ids =
new
int
[cursor.getCount()];
// 返回INT的一個列
_artists =
new
String[cursor.getCount()];
// 返回String的一個列
_titles =
new
String[cursor.getCount()];
// 返回String的一個列
for
(
int
i =
0
; i < cursor.getCount(); i++) {
_ids<I> = cursor.getInt(
3
);
_titles<I> = cursor.getString(
0
);
_artists<I> = cursor.getString(
2
);
cursor.moveToNext();
// 將遊標移到下一行
}
listview.setAdapter(
new
LocalMusicListAdapter(
this
, cursor));
// 用setAdapter裝載數據
|
源碼: MusicOne1.zip
java
航空訂票
航空訂票正確方法是用webservice連上去獲得xml並下載而後解析,但沒有條件用webservice,只能用本地的開始解析,也就是在assets這裏創建一個xml解析。解析上本身定義根名吧。而後佈局方面咱們採用tabhost顯示單程和返程的UI。顯示查詢結果用Listview顯示出來了。界面參照代碼下載那帖吧。android
if (leaveCity.equals(sp.getLeaveCity().substring(0, 2) .toString()) && arriveCity.equals(sp.getArriveCity().substring(0, 2) .toString()))