我正在尝试用代码和java进行设计。这是活动 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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
android:id="@+id/hello">
</RelativeLayout>
这是我正在尝试的Java代码。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
RelativeLayout layout=(RelativeLayout)findViewById(R.id.hello);
TextView txt=new TextView(this);
txt.setText("Hello World Problem");
layout.addView(txt);
setContentView(R.layout.activity_main);
}
在相对布局中,我想在 java 代码中添加 textview。但上面的java代码不起作用。错误:应用程序已不幸停止。我该如何编码?