如何包装文本android listview

时间:2011-11-05 01:22:15

标签: android android-layout

http://img804.imageshack.us/img804/9858/howtowrapmiddletext.png

基本上我有一个分为三个部分的列表视图。左边是图像,右边是按钮,中间是我想要包裹的文本。看我的图片我正在谈论的是什么

这是我的xml布局:

<?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">

<ImageView
    android:layout_height="wrap_content" 
    android:layout_width="wrap_content" 
    android:src="@drawable/ic_tab_drink_selected"
    android:id="@+id/img1"/>
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="10dp"
    android:textSize="16sp"
    android:id="@+id/text1"/>
<Button
    android:id="@+id/btn1"
    android:layout_width="60dp"
    android:layout_height="60dp"
     />
</LinearLayout>

1 个答案:

答案 0 :(得分:4)

好的,您可以尝试以下几种方法:

1)你的线性布局中有android:orientation="horizontal"吗?

2)对于您的EditText,请设置android:inputType="textMultiLine"

如果不起作用, 3)对于您的EditText,请设置android:layout_width="0dip"android:layout_weight="1"