Android Activity仅在声明为main和launcher活动时才有效

时间:2013-04-30 10:43:34

标签: java android android-intent android-manifest intentfilter

我正在Android中构建一个音乐播放器。我正在尝试的是显示播放列表 当应用程序启动并且用户单击列表项并将intent传递给播放歌曲的android_player活动时。 但它不起作用,当我点击列表项应用程序崩溃并关闭。

但是当我宣布music_player活动为启动器时,它可以工作。但我想首先显示播放列表而不是music_player。

我有以下清单文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.app"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
   <activity
        android:name=".MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".AndroidMusicPlayerActivity"
        android:label="@string/app_name"
        android:configChanges="keyboardHidden|orientation"
        android:screenOrientation="portrait">
        <-- <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter> -->
   </activity>
</application>

我应该对清单文件进行哪些更改才能使其正常工作。

AndroidMusicPlayerActivity has following code to receive intent

@Override
protected void onActivityResult(int requestCode,
                                 int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if(resultCode == 100){
         currentSongIndex = data.getExtras().getInt("songIndex");

         // play selected song
         playSong(currentSongIndex);
    }

}

显示播放列表跟随意图的主要活动

 lv.setOnItemClickListener(new OnItemClickListener() {

            @Override
            public void onItemClick(AdapterView<?> parent, View view,
                    int position, long id) {
                // getting listItem index
                int songIndex = position;

                // Starting new intent
                Intent in = new Intent(getApplicationContext(),
                        AndroidMusicPlayerActivity.class);
                // Sending songIndex to PlayerActivity
                in.putExtra("songIndex", songIndex);
                setResult(100, in);
                // Closing PlayListView
                finish();
            }
        });

当我点击listitem时记录Cat数据。

04-30 16:17:16.946: D/OpenGLRenderer(3858): Enabling debug mode 0 04-30
16:17:29.958: W/IInputConnectionWrapper(3858): showStatusIcon on inactive InputConnection 
04-30 16:17:30.018: D/OpenGLRenderer(3858): Flushing caches (mode 0)

我应该做些什么来使这段代码发挥作用。 我是android的新手。请帮忙。 谢谢!

2 个答案:

答案 0 :(得分:0)

为什么你要将这两个活动作为清单中的启动器?删除它然后检查。

答案 1 :(得分:0)

我可能会遗漏一些东西,但在你的onitemClickListener中你似乎在第一个活动上调用了finish()而没有开始第二个活动。 当然你需要添加一个startActivity(in);呼叫。