我正在尝试做的可能非常简单,但我遵循了几个不同的说明,似乎无法让它工作。基本上我想做的就是在(main_activity)下的xml布局中创建一个按钮,在java(MainActivity)中引用它,然后设置该按钮以打开它自己的新xml文件。截至目前,当我单击按钮(在我的手机上而不是模拟器上)时崩溃。这就是我到目前为止所拥有的。感谢您查看它。
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" >
<TextView
android:id="@+id/tvFirst"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="Application"
android:textSize="30dp" />
<Button
android:id="@+id/b1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tvFirst"
android:layout_centerHorizontal="true"
android:layout_marginTop="46dp"
android:text="1"
android:textSize="30dp" />
</RelativeLayout>
java屏幕1
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button b = (Button) findViewById(R.id.b1);
b.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Intent i = new Intent(MainActivity.this, ButtonOne.class);
startActivity(i);
}
});
}
}
xml屏幕2
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/tvButtonOne"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This is te button one screen" />
</LinearLayout>
java屏幕2
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
findViewById(R.layout.buttonone);
}
}