私はそれぞれ 10 個の値を持つ 2 つのスピナーを持っています。ユーザーが 2 つの値を選択すると、「YourPath」と呼ばれる別のアクティビティで特定の画像が返されます。
これが最初のアクティビティのコードです
private Spinner spinner1, spinner2;
private Button btnSubmit;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.locationlist);
addListenerOnButton();
addListenerOnSpinnerItemSelection();
}
public void addListenerOnSpinnerItemSelection() {
spinner1 = (Spinner) findViewById(R.id.spinner1);
spinner2 = (Spinner) findViewById(R.id.spinner2);
}
public void addListenerOnButton() {
spinner1 = (Spinner) findViewById(R.id.spinner1);
spinner2 = (Spinner) findViewById(R.id.spinner2);
btnSubmit = (Button) findViewById(R.id.button1);
btnSubmit.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
AlertDialog alertDialog = new AlertDialog.Builder(
LocationList.this).create(); // Read Update
alertDialog.setTitle("Confirm Message");
alertDialog.setMessage("You are in "
+ String.valueOf(spinner1.getSelectedItem())
+ "\nAnd You are going to "
+ String.valueOf(spinner2.getSelectedItem()));
alertDialog.setButton("Yes",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int which) {
launchIntent();
}
});
alertDialog.setButton2("No",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int which) {
}
});
alertDialog.show();
}
private void launchIntent() {
Intent it = new Intent(LocationList.this, YourPath.class);
it.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(it);
}
});
}
}
それを行うにはデータベースが必要ですか!!!
どうすればそれができるかについてのアイデアはありますか!!!!
ありがとう