我是android的初学者,正在研究布局。
我想要做的是尝试通过代码将一个textView添加到LinearLayout,并且应用程序因应用程序意外停止的错误而停止。代码是:
setContentView(R.layout.main);
LinearLayout abc = (LinearLayout)findViewById(R.id.cLayout);
TextView tv = new TextView(this);
tv.setText("Text Changed!!!!");
abc.addView(tv);
在xml中,id设置如下:android:id =“@ + id / cLayout”。
我知道有更好的方法可以做到,但我想知道为什么这不起作用。 textView的内容正在改变。我也试过
LinearLayout abc = (LinearLayout)findViewById(R.layout.main);
我做错了什么?有一点很清楚我正在访问未创建的项目(未指定的指针)。
修改 主xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/cLayout"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Hello World"
android:id="@+id/myTV"
/>
</LinearLayout>
答案 0 :(得分:1)
我试图重现它,它对我有用,没有例外。
main.xml中:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/cLayout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Hello World, MyActivity"/>
</LinearLayout>
MyActivity.java:
public class MyActivity extends Activity
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
LinearLayout ll = (LinearLayout) findViewById(R.id.cLayout);
TextView tv = new TextView(this);
tv.setText("Hello Again!");
ll.addView(tv);
}
}
UPD 当我发布您的代码时,我也遇到了异常。请务必致电super.onCreate()
。