フラグメントから別のアクティビティに文字列を渡す際に問題があります。インテント (通常のエクストラ、バンドルなど) を使用してそれらを渡す多くの方法を試しましたが、アクティビティではエクストラは常に null です。
私は見てきた
http://www.vogella.com/articles/AndroidIntent/しかし変更なし http://developer.android.com/training/basics/firstapp/starting-activity.html データを渡すこの方法も機能しません
スタックオーバーフローに関する他の同様の質問 - しかし、これらはまったく同じではありません
私がやろうとしているのは、フラグメント内の 2 つの EditTexts に入力されたテキストを取得し、そのテキストをアクティビティに渡し、そこにある 2 つの EditTexts が同じテキストで満たされるようにすることです。問題は、アクティビティの 2 つの EditText に何も表示されないことです。フラグメントを使用して通知を作成できるため、フラグメント内の EditText が機能していることはわかっています。
私のコード: フラグメントをナビゲーション ドロワー レイアウトに追加するなど、不要と思われるものを削除しました。角かっこの欠落をお許しください - 私は多くのコードを削除しましたが、いくつかは誤って削除された可能性があります! :-)
これは、インテントを作成するフラグメントです。
// Package declaring and importing stuff
public class QuickNoteFragment extends Fragment implements OnClickListener {
// Removed some stuff
EditText body;
EditText title;
Button create;
int counter = 0;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.quicknote, container, false);
body = (EditText) rootView.findViewById(R.id.qn_et_body);
title = (EditText) rootView.findViewById(R.id.qn_et_title);
create.setOnClickListener(this);
// Removed stuff
getActivity().setTitle(noter_activity); // Part of navigation drawer?
return rootView;
}
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
switch (v.getId()) {
case R.id.qn_b_create:
String content_text = body.getText().toString();
String content_title = title.getText().toString();
if (content_title.length() >=1){
Context context = v.getContext();
// This intent does not seem to work
Intent eIntent = new Intent(context, QuickNoteEdit.class);
eIntent.putExtra("eTitle", content_title);
eIntent.putExtra("eText", content_text);
PendingIntent EditPendingIntent = PendingIntent.getActivity(context, 0, eIntent, 0);
// This intent works comletely. This is called when a notification action button is pressed
Intent qnCancel = new Intent();
qnCancel.setAction("com.RiThBo.noter.qnCancelBroadcast");
Bundle extras = new Bundle();
extras.putInt("valueOfCounter", counter);
qnCancel.putExtras(extras);
startBroadcast(qnCancel);
PendingIntent pQnCancel = PendingIntent.getBroadcast(this.getActivity(), 0, qnCancel, 0);
// Creates Notification
} else {
// Do something
}
case R.id.*** // Does something else
}
}
private void startBroadcast(Intent qnCancel) { // This is part of the correctly working intent
// TODO Auto-generated method stub
}
}
これは、エクストラを取得しようとしているアクティビティです
// Removed package and imports
public class QuickNoteEdit extends Activity implements OnClickListener {
EditText body;
EditText title;
@SuppressLint("NewApi")
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.quicknote_edit);
variableConnector(); // This gets the id for all the items in the xml
Intent intent = getIntent();
String gotTitle = intent.getStringExtra("content_title"); // This is where I think it equals null. Because the
String gotBody = intent.getStringExtra("content_text");
title.setText(gotTitle);
body.setText(gotBody);
}
private void variableConnector() {
// TODO Auto-generated method stub
body = (EditText) findViewById(R.id.qne_et_body);
title = (EditText) findViewById(R.id.qne_et_title);
}
@Override
protected void onPause() {
// TODO Auto-generated method stub
super.onPause();
}
}
ありがとうございました