Android:onClick="getGraph" のボタンがあるため、クリックされている間に関数を作成し、CheckByDate.java にあるユーザー入力を取得します
public void getGraph (View view)
{
tv = (TextView)findViewById(R.id.textView1);
textDay = (EditText) findViewById(R.id.textDay);
textMonth = (EditText) findViewById(R.id.textMonth);
textYear = (EditText) findViewById(R.id.textYear);
day = textDay.getText();
month = textMonth.getText();
year = textYear.getText();
date = day + "/" + month + "/" + year;
Intent dategraphintent = new Intent(CheckByDate.this, DateGraph.class);
dategraphintent.putExtra("date", date);
startActivity(dategraphintent);
}
次に、DateGraph.java に次のようなものを入れます。
public Intent getIntent(Context context)
{
String date;
date = getIntent().getStringExtra("date");
.
.
.
. //This is where the date will interact with my web service, then receive
. //an array set of values, and plot as a graph
.
.
}
しかし、ボタンをクリックすると、強制的に閉じられ、まったくわかりませんでした。何かアイデアはありますか?私はあなたの方法を試してみましたか、それとも愚かな間違いを犯したのでしょうか?? お願いします、あなたの助けが必要です....