第一页上的一切正常但是当我按下按钮时第二页加载但按钮不会出现......没有崩溃或错误。
Public void onClick(View v)
{
switch (v.getId())
{
case R.id.button2:
finish();
break;
case R.id.button1:
Intent game1 =new Intent(this, game.class);
this.startActivity(game1);
}
然后我显示第2页
public class game extends Activity implements OnClickListener{
public void OnCreate(Bundle icicle)
{
super.onCreate(icicle);
setContentView(R.layout.game1);
Button b1= (Button)findViewById(R.id.b1);// Doesn't show up
b1.setOnClickListener(this);
}
public void onClick (View v)
{
switch (v.getId())
{
case R.id.b1:
setResult(RESULT_OK);
finish();
break;
}
}
}
按钮没有显示......我不明白为什么。任何回复都是有帮助的。
编辑:继承了game1的XML
< ?xml version="1.0" encoding="utf-8"?>
< LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@color/white" >
<Button
android:id="@+id/b1"
android:layout_width="100dp"
android:layout_height="50dp"
android:onClick="myClick"
android:text="Exit" />
</LinearLayout>
编辑:主要
的布局<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:id="@+id/button1"
android:layout_width="104dp"
android:layout_height="wrap_content"
android:text="Start" />
<Button
android:id="@+id/button2"
android:layout_width="99dp"
android:layout_height="wrap_content"
android:text="Exit"
android:onClick="myClick"
/>
</LinearLayout>
答案 0 :(得分:1)
Intent game1 = new Intent(this,game.class);
而不是这一行试试这样我觉得它会起作用
Intent game1 = new Intent(yourClassName.this,game.class);
答案 1 :(得分:0)
问题在于您的线性布局 试试这个会起作用..
<?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" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>