码迷,mamicode.com
首页 > 其他好文 > 详细

布局修改就保存

时间:2014-10-22 00:47:32      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:android   color   ar   sp   on   问题   bs   ef   size   

============问题描述============


<TableRow
 android:background="#ffffff"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >

   <CheckBox
            android:id="@+id/checkchargekind"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:button="@null"
            android:background="#ffffff"
             android:textColor="#000000"
              android:textSize="20dp" 
             android:drawableRight="@layout/mycheckbox"
         android:gravity="right|center_vertical"
            android:text="送货" />
   <TextView
         android:id="@+id/songhuofei"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="#ffffff"
                android:gravity="left"
                android:layout_marginLeft="13dip"
                android:text="送货费:"
                 android:textColor="#000000"
                android:textCursorDrawable="@null"
                android:textSize="20dp" />
   <CheckBox
            android:id="@+id/checktransfer"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:button="@null"
            android:layout_marginLeft="13dip"
            android:background="#ffffff"
             android:textColor="#000000"
              android:textSize="20dp" 
             android:drawableRight="@layout/mycheckbox"
         android:gravity="right|center_vertical"
            android:text="中转" />
   <TextView
    android:id="@+id/md"
     android:background="#ffffff"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:gravity="left"
                 android:layout_marginLeft="13dip"
                android:text=""
                 android:textColor="#000000"
                android:textCursorDrawable="@null"
                android:textSize="20dp" />
     </TableRow>

我就是把android:id="@+id/songhuofei" 这个TextView重被别的地方移到这个TableRow里了
结果走到checktransfer=(CheckBox) findViewById(R.id.checktransfer);  
就给我报android.widget.TextView cannot be cast to android.widget.CheckBox
这个错误

============解决方案1============


那就用TextView接一下打印出他的值来看看是什么

布局修改就保存

标签:android   color   ar   sp   on   问题   bs   ef   size   

原文地址:http://www.cnblogs.com/lmyangbk/p/4041878.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!