如何创建固定/动态宽度列布局?

时间:2012-10-30 00:30:00

标签: android android-layout android-linearlayout android-view

我正在尝试构建一个与其父宽度匹配的View(理想情况下为LinearLayout)。这个布局应该有两个孩子(水平):

  1. 假定TextView占用所有可用宽度 - 或者至少包装其内容(但不得与其他视图重叠)。
  2. 另一个固定宽度为60dp的LinearLayout。
  3. 以下是我正在努力实现的基本草图:sketch

2 个答案:

答案 0 :(得分:1)

我最近回答了这个here。只需将该答案中的第二个TextView与您的孩子LinearLayout交换

答案 1 :(得分:1)

这个怎么样:

<?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" >
    <TextView 
        android:layout_width="0dip"
        android:layout_height="fill_parent"
        android:background="#ff0000"
        android:gravity="center"
        android:text="TextView Multiline"
        android:textSize="10dp"
        android:textColor="#ffffff"
        android:layout_weight="1"/>
    <LinearLayout 
        android:layout_width="60dp"
        android:layout_height="fill_parent"
        android:gravity="center"
        android:background="#0000ff" >
        <TextView 
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="TextView"
            android:textColor="#ffffff"
            android:textSize="10dp"/>        
    </LinearLayout>
</LinearLayout>

虽然60 dp非常狭窄imho