Android アプリの開発を始めてよかったです。
しかし、今起こった新しい何かがあります!
ユーザーがアクティビティを示さなくなった後、アプリは OS によって強制終了されます
何かで有名です...
現在、これはメイン アクティビティ画面ではなくこの画面でのみ発生します
このプレイリスト アクティビティに ListView を使用しました
今 - したい画面の調光を許可しますが、無効にしないでください!アプリをメモリに保持しながら! Plzは誰でも方法を教えてくれますか
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_playlist);
// Show the Up button in the action bar.
setupActionBar();
ListView playlistView = (ListView)findViewById(R.string.playlistHolder);
String[] STAR = { "*" };
Uri allsongsuri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
String selection = MediaStore.Audio.Media.IS_MUSIC + " != 0";
@SuppressWarnings("deprecation")
Cursor cursor = managedQuery(allsongsuri, STAR, selection, null, null);
File musicstorage = new File("assets/music.xml");
// Create the array list of to do items
ArrayList<String> playItems = new ArrayList<String>();
// Create the array adapter to bind the array to the listview
ArrayAdapter<String> aa;
aa = new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1,playItems);
// Bind the array adapter to the listview.
playlistView.setAdapter(aa);
if (cursor != null)
{
if (cursor.moveToFirst())
{
do
{
String song_name = cursor.getString(cursor
.getColumnIndex(MediaStore.Audio.Media.DISPLAY_NAME));
int song_id = cursor.getInt(cursor
.getColumnIndex(MediaStore.Audio.Media._ID));
String fullpath = cursor.getString(cursor
.getColumnIndex(MediaStore.Audio.Media.DATA));
String album_name = cursor.getString(cursor
.getColumnIndex(MediaStore.Audio.Media.ALBUM));
int album_id = cursor.getInt(cursor
.getColumnIndex(MediaStore.Audio.Media.ALBUM_ID));
String artist_name = cursor.getString(cursor
.getColumnIndex(MediaStore.Audio.Media.ARTIST));
int artist_id = cursor.getInt(cursor
.getColumnIndex(MediaStore.Audio.Media.ARTIST_ID));
playItems.add(0, song_name);
aa.notifyDataSetChanged();
} while (cursor.moveToNext());
}
cursor.close();
}
}