我必须将数据从一个活动传递到下一个活动。
我在第一次活动中使用了以下代码:
static String KEY_CATEGORY = "Category";
static final String KEY_TITLE = "Categoryname";
lview3.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
//HashMap<String, String> map = songsList.get(position);
switch (position)
{
case Tech:
Intent tech = new Intent(MainActivity.this, com.ssmobileproductions.catalogue.SubCate.class);
tech.putExtra(KEY_TITLE, "Books");
startActivity(tech);
break;
case Sport:
Intent sport = new Intent(MainActivity.this, com.ssmobileproductions.catalogue.SubCate.class);
sport.putExtra(KEY_TITLE, "CD-DVD-Video");
startActivity(sport);
break;
default:
break;
}
在第二个活动中必须使用以下代码:
static String KEY_CATEGORY = "SubCategory";
static final String KEY_SUBCATE = "subcategoryname";
static final String KEY_TITLE = "Categoryname";
Bundle bdl = getIntent().getExtras();
KEY_CATEGORY = bdl.getString(KEY_TITLE);
我的数据有价值。 但我必须运行应用程序意味着我的屏幕空白。这里做错了什么。请帮助我。
这是完整的源代码: MainACtivity.java
修改
这是我的AndroidManifest.xml文件:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Light.NoTitleBar" >
<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=".SubCate"
android:label="@string/app_name" />
</application>
这是我的xml Feed:
<Feed>
<category>
<Category>
<Categoryname>Books</Categoryname>
<SubCategory>
<subcategoryname>Internet</subcategoryname>
</SubCategory>
<SubCategory>
<subcategoryname>Software</subcategoryname>
</SubCategory>
</Category>
<Category>
<Categoryname>CD-DVD-Video</Categoryname>
<SubCategory>
<subcategoryname>CD</subcategoryname>
</SubCategory>
<SubCategory>
<subcategoryname>DVD</subcategoryname>
</SubCategory>
</Category>
</category>
</Feed>
这是我的期望输出,如:
Books
CD-DVD-Video
我必须点击图书表示其转到下一个活动并且必须仅显示该图书子类别。(即)我必须单击图书类别表示我必须仅显示互联网和软件。< / p>
我必须单击 CD-DVD-Video 表示它转到下一个活动并且必须仅显示该CD-DVd-Video子类别。(即)我必须单击CD-DVD-Video类别意味着我必须只显示CD,DVD。
这是我当前的输出:
但我必须运行应用程序意味着我在第一次活动时获取书籍和cd-dvd-video.i必须单击任何类别意味着显示空白屏幕。请帮助我。这里发生了什么错误。
修改
在第二个活动( SubCate.java )文件中,我删除了以下行
Bundle bdl = getIntent().getExtras();
KEY_CATEGORY = bdl.getString(KEY_TITLE);
在我必须运行应用程序之后意味着我在第一页上显示了Books CD-DVD-Video类别。之后我必须单击任何类别意味着我已在每个类别列表中显示所有子类别。
FOR EG:
我必须点击预订类别意味着我必须只显示互联网和软件。但这里显示的是互联网,软件,CD,DVD。 而且我必须点击 CD-DVD-Video 类别意味着我必须只显示CD,DVD。但是这里还显示了4个子类别。这里做错了什么。请帮助我。
答案 0 :(得分:1)
更改清单文件中活动的名称,如下所示:
<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=".SubCate"
android:label="@string/app_name" />
的活动:
lview3.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
//HashMap<String, String> map = songsList.get(position);
switch (position)
{
case Tech:
Intent tech = new Intent(MainActivity.this, SubCate.class);
tech.putExtra(KEY_TITLE, "Books");
startActivity(tech);
break;
case Sport:
Intent sport = new Intent(MainActivity.this, SubCate.class);
sport.putExtra(KEY_TITLE, "CD-DVD-Video");
startActivity(sport);
break;
default:
break;
}
在您的第二项活动中,请执行以下操作:
String key = getIntent().getStringExtra(KEY_TITLE);
答案 1 :(得分:0)
只需按照
进行广告意图i = getIntent();
if(i != null){
String Title = i.getExtra.getString(KEY_TITLE);
}