看不懂这个。做了研究,在这里搜索,在网上等。对于Java/Android,我还是个新手,不过我的做法似乎是对的,所以我开始了。
我的主活动启动几个子活动基于触摸菜单项。对于每一个,我将一个带有一些"额外"字符串数据的bundle传递给子活动。每个子活动检索数据,进行一些处理,然后使用. putextra()将新的/更改的数据放回一个包中,并使用finish()退出子活动。
除了一个子活动外,这在所有子活动中都工作良好。在这一个子活动,当我返回到onActivityResult,意图对象是NULL而不是"有额外的"。我试了很多方法,但就是行不通。下面是一些框架代码,我希望能帮助证明这一点:
在父活动(onOptionItemsSelected的一部分)中,子活动被启动:
case R.id.read_file:
Intent intentR = new Intent(this, GetReadFileName.class);
intentR.putExtra(GetReadFileName.EXTRA_WHATEVER, baseDirectory);
startActivityForResult(intentR, REQUEST_READ_FILE_NAME);
return true;
case R.id.write_file:
Intent intentW = new Intent(this, GetWriteFileName.class);
intentW.putExtra(GetWriteFileName.EXTRA_FILE_NAME, fileName);
startActivityForResult(intentW, REQUEST_WRITE_FILE_NAME);
return true;
子活动GetWriteFileName:
public class GetWriteFileName extends Activity{
String fileName;
public static String EXTRA_FILE_NAME = "file_name";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.wfn);
fileName = getIntent().getExtras().getString(EXTRA_FILE_NAME);
// fileName is PROPERLY received from parent. No issues here.
.
. do processing
.
Intent intent = new Intent();
intent.putExtra(EXTRA_FILE_NAME, fileName); // put changed/modified name in bundle for parent
setResult(Activity.RESULT_OK, intent);
finish();
子活动GetReadFileName:
public class GetReadFileName extends Activity {
/** Called when the activity is first created. */
public static String EXTRA_WHATEVER = "whatever";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String extStorageDir = Environment.getExternalStorageDirectory().toString() + getIntent().getExtras().getString(EXTRA_WHATEVER);
// extStorageDir is PROPERLY retrieved from parent. No issue here.
.
. do processing
.
Intent intent = new Intent();
intent.putExtra(EXTRA_WHATEVER, "Just a damn string"); // Stuff to pass back OUT to parent
// Note: doesn't matter if I have a literal, String variable, or anything else here. End result is the same.
setResult(Activity.RESULT_OK);
finish();
最后,在onActivityResult:
public void onActivityResult(int requestCode, int resultCode, Intent data) {
switch (requestCode) {
case REQUEST_WRITE_FILE_NAME:
if (resultCode == Activity.RESULT_OK) {
fileName = data.getExtras().getString(GetWriteFileName.EXTRA_FILE_NAME);
}
break;
case REQUEST_READ_FILE_NAME:
if (resultCode == Activity.RESULT_OK) {
fileName = data.getExtras().getString(GetReadFileName.EXTRA_WHATEVER);
}
break;
我希望您能原谅我省略了右花括号等。
问题是,当GetWriteFileName返回到父Intent数据在调试器中显示为"has extras",字符串可以被检索。
当GetReadFileName返回到父Intent数据是NULL,这就是问题所在。为什么是NULL?从我的角度来看,我在两个活动中做同样的事情,将东西返回给父母。我的Android Manifest文件包含了我认为它应该包含的内容。关键字段似乎是正确的。我被困在这里了。想法吗?
Manifest文件:
<activity android:name=".DeviceListActivity"
android:label="@string/select_device"
android:theme="@android:style/Theme.Dialog"
android:configChanges="orientation|keyboardHidden" />
<activity android:name=".GetWriteFileName"
android:theme="@android:style/Theme.Dialog"
android:configChanges="orientation|keyboardHidden" />
<activity android:name=".GetReadFileName"
android:theme="@android:style/Theme.Dialog"
android:label="@string/select_file"
android:configChanges="orientation|keyboardHidden" />
/>
谢谢你看完这些
在write子活动中,您传递回意图。在你的阅读中,你不需要。
setResult(Activity.RESULT_OK, intent);
代替
setResult(Activity.RESULT_OK);