私はアンドロイドが初めてです。私はスピナーで立ち往生しています。「FROM」と「TO」の2つのスピナー項目があります。FROM Place1、To Place2 を検索する場合は、次のようにコーディングします。次に、ボタンをクリックした後、条件が一致した場合、別のページにリダイレクトする必要があります。アプリの実行中にエラーが発生せず、ボタンをクリックしても応答がありません。
以下のコードをご覧ください。私はこのことを 3 つの方法 (* コメントで) で試しましたが、いずれも目的の出力が得られません。
package com.aricent.aricentgroupapps;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.Spinner;
public class SelectLocation extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_select_location);
Button route = (Button) findViewById(R.id.RouteButton);
final Spinner spin1 = (Spinner) findViewById(R.id.fromdropdrown);
final Spinner spin2 = (Spinner) findViewById(R.id.todropdrown);
route.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
String str1 = spin1.getSelectedItem().toString();
String str2 = spin2.getSelectedItem().toString();
String plot31= "Plot 31";
String plot314= "Plot 314";
/* if(String.valueOf(spin1.getSelectedItem())== "Plot 17" && String.valueOf(spin2.getSelectedItem())== "Plot 16")
{
Intent i = new Intent(SelectLocation.this, Route1.class);
startActivity(i);
}
if (spin1.equals("Plot 17") && spin2.equals("Plot 16"))
{
Intent i = new Intent(SelectLocation.this, Route1.class);
startActivity(i);
}
*/
if (str1== plot31 && str2==plot314)
{
Intent i = new Intent(SelectLocation.this, Route1.class);
startActivity(i);
}
}
});
}
protected String valueOf(Object selectedItem) {
// TODO Auto-generated method stub
return getString(0);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.select_location, menu);
return true;
}
}