我有个简单的layout
<?xml version="1.0" encoding="utf-8"?>
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mylayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TableRow >
<TextView
android:id="@+id/id"
android:textSize="30px"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/name"
android:textSize="30px"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</TableRow>
</TableLayout>
然后private LinearLayout layout = null;
this.layout =(LinearLayout)findViewById(R.id.mylayout);
调用的话layout =null;换成tablelayout的类型也不行
跪求大神
------解决方案--------------------
一个TableLayout一个LinearLayout,类型不一样。
------解决方案--------------------
onCreate方法写的有问题吧,我用lz的布局完全正常