我开始了一个空白项目并通过添加以下内容修改了onCreate,但是没有创建按钮,因为我在设计视图中看不到它。我做错了什么,我希望看到按钮的文字如图所示。
Button b = new Button(this);
b.setText("Hello Button");
setContentView(b);
很多thx
答案 0 :(得分:0)
由于您是通过代码创建布局的,因此您不会在XML视图中看到它。如果您构建并运行该应用,则应该会看到Button
。
如果您希望在XML视图中看到Button
,则应修改main_layout.xml,如下所示:
<?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/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="I am a Button"/>
</LinearLayout>
您可以在调用setContentView()后使用以下代码在Java代码中获得对此Button
的引用:
Button button = (Button) findViewById(R.id.button);