当前位置: 代码迷 >> Android >> width设置成wrap_content后TextView不能正常显示了,该怎么解决
  详细解决方案

width设置成wrap_content后TextView不能正常显示了,该怎么解决

热度:9   发布时间:2016-04-28 01:04:46.0
width设置成wrap_content后TextView不能正常显示了
下面的代码是我ListView里Item的布局。因为我想实现滑动删除效果,所以txt_delete是处于屏幕之外的,当滑动屏幕时它才出现。
现在的问题是:如果把txt_delete的width从200px改成wrap_content,那它在程序中就不能正常显示了,它那块是个空白。求教大神们怎么解决啊?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >
    <TextView 
        android:id="@+id/text_view"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="9"
        />
    <ImageView 
        android:id="@+id/iv_warning"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:src="@drawable/icn_mark_notsupported"
        android:layout_height="match_parent"
        />
    </LinearLayout>
<TextView 
    android:id="@+id/txt_delete"
    android:layout_height="match_parent"
    android:layout_width="200px"
    android:text="@string/delete"
    android:gravity="center"
    android:background="#ff0000"
    android:textColor="#ffffff"
    />
</LinearLayout>

------解决思路----------------------
最开始不显示的话会从value里面读取数据么?给文字写死试试
------解决思路----------------------
用横向的ScrollView试试(HorizontalScrollView),前面的充满父布局,,
------解决思路----------------------
你想实现的效果,我个人去年的时候看到过有一篇,那位大牛用的方法是自定义ViewGroup,继承ListView的ViewGroup在里面自己写了删除item的方法,我下载了他的DEMO,运行时候不是很流畅,而且有崩溃现象,呵呵,虽然美中不足,但是毕竟也拓展了我的思路,大牛V5,你也可以去下载来研究下,这个东西其实研究了后自己写写,很深刻。等空闲一点的时候,我个人准备仿他的方法写个自定义的ViewGroup继承GridView来实现系统那种滑动删除APP的DEMO,呵呵。下面给你大牛的网址:

http://blog.csdn.net/guolin_blog/article/details/17357967
  相关解决方案