当前位置: 代码迷 >> Android >> 新手问关于layout的有关问题
  详细解决方案

新手问关于layout的有关问题

热度:104   发布时间:2016-05-01 11:13:40.0
新手问关于layout的问题
我有个简单的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的布局完全正常