XML的ViewGroup我希望能夠到一個視圖中的代碼添加到一個已經存在的XML佈局:添加視圖,以現有的代碼
LinearLayout ll = (LinearLayout) findViewById(R.layout.common_list);
TextView tv = new TextView(this);
tv.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
tv.setText("sample text");
ll.addView(tv);
setContentView(ll);
當創建一個新的LinearLayout代碼它的工作原理,但是當使用像上面的代碼中的資源,它不會。
common_list.xml:
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="Quick List"/>
</LinearLayout>
哪個錯誤給你在logcat? – Dayerman
錯誤/ AndroidRuntime(8357):java.lang.RuntimeException:無法啓動活動ComponentInfo {com.example.androidABC/com.example.androidABC.Common_ActivityList}:java.lang.NullPointerException 09-01 14:59:57.889: ERROR/AndroidRuntime(8357):at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2753) 09-01 14:59:57.889:ERROR/AndroidRuntime(8357):at android.app.ActivityThread.handleLaunchActivity(ActivityThread。 java:2769) 09-01 14:59:57.889:ERROR/AndroidRuntime(8357):at android.app.ActivityThread.access $ 2500(ActivityThread.java:129) – Klau3