開発しようとしているアプリケーションで 1 つのアクティビティ/画面を入力する際に問題があります。ボタンを押してそのアクティビティを開くたびに、アプリケーションがクラッシュするようです。ここにJavaファイルがあります:
public class login extends Activity{
// all kinds of functions //
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.login);
place();
btn_clr.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
clearForm();
}
});
btn_back.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent myIntent = new Intent(view.getContext(), MainActivity.class);
startActivityForResult(myIntent, 0);
finish();
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.login, menu);
return true;
}
これがlayout.xmlファイルです:
< RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".login.java"
android:orientation="vertical" >
// setting all the buttons and texts //
< /RelativeLayout>
これは menu.xml ファイルです
< menu xmlns:android="http://schemas.android.com/apk/res/android" >
< item
android:id="@+id/menu_settings"
android:orderInCategory="100"
android:showAsAction="never"
android:title="@string/log_str"/>
< /menu>
これがアクティビティの呼び出しです。
btn_log.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent myIntent = new Intent(view.getContext(), login.class);
startActivityForResult(myIntent, 0);
finish();
}
});
2日間イライラします。前もって感謝します