我有一个项目清单。左边的大框是我的形象。这两个框是文本框。我希望上面的文本框是椭圆形的。这是我当前的布局文件。
MainLayout
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp" >
<ListView
android:id="@+id/List"
android:layout_width="fill_parent"
android:clickable="true"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>
每个列表项中的布局是
<?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="wrap_content"
android:padding="5dp" >
<ImageView
android:id="@+id/Logo"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="20dp"
android:layout_marginTop="5dp"
android:src="@drawable/ic_launcher" >
</ImageView>
<LinearLayout android:id="@+id/textViews"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:clickable="false"
android:focusableInTouchMode="false"
android:orientation="vertical">
<TextView
android:id="@+id/detail"
android:layout_width="match_parent"
android:ellipsize="end"
android:clickable="false"
android:focusableInTouchMode="false"
android:layout_height="wrap_content"
android:textSize="20sp" >
</TextView>
<TextView
android:id="@+id/detail2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="false"
android:focusableInTouchMode="false"
android:textSize="12sp" >
</TextView>
</LinearLayout>
</LinearLayout>
有了这个,如果我在上方框中的细节太大,则在...
之前需要两行,并且下面的textView永远不会显示。
如果上方框中的文字很小,那么它看起来很好。如何限制上方框溢出到整个列表元素大小?
由于
答案 0 :(得分:2)
我想你想在上方框中添加android:singleLine="true"
。
答案 1 :(得分:1)
你可以给他们一个体重,并设置高度为match_parent。
<TextView
android:id="@+id/detail"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="false"
android:ellipsize="end"
android:layout_weight="1"
android:focusableInTouchMode="false"
android:textSize="20sp" >
</TextView>
<TextView
android:id="@+id/detail2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="false"
android:layout_weight="1"
android:focusableInTouchMode="false"
android:textSize="12sp" >
</TextView>