Android Studio onCreate setContentView
Android Studio onCreate setContentView
我启动了一个空白项目,并通过添加以下内容修改了 onCreate,但是没有创建按钮,因为我在设计视图中看不到它。我做错了什么,我希望看到带有指示文本的按钮。
Button b = new Button(this);
b.setText("Hello Button");
setContentView(b);
非常感谢
由于您是通过代码创建布局,因此您不会在 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>
您可以在 Java 代码中获取对此 Button
的引用,方法是使用以下代码 after 调用 setContentView():
Button button = (Button) findViewById(R.id.button);
我启动了一个空白项目,并通过添加以下内容修改了 onCreate,但是没有创建按钮,因为我在设计视图中看不到它。我做错了什么,我希望看到带有指示文本的按钮。
Button b = new Button(this);
b.setText("Hello Button");
setContentView(b);
非常感谢
由于您是通过代码创建布局,因此您不会在 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>
您可以在 Java 代码中获取对此 Button
的引用,方法是使用以下代码 after 调用 setContentView():
Button button = (Button) findViewById(R.id.button);