什么是布局权重的方式

时间:2013-08-12 17:03:37

标签: android android-layout android-layout-weight

  

我试过this。我打算这样做:

enter image description here

  

但它以这种方式显示:

enter image description here

    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/tvHiragana"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hiragana"
        android:layout_weight="2"
        android:textSize="22sp" />

    <TextView
        android:id="@+id/tvKanji"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Kanji"
        android:textColor="@color/redColor"
        android:layout_weight="1"
        android:textSize="20sp" />

</LinearLayout>

我应该怎样做才能使其在layout_weight方面正常运作?如何避免在TextView中创建新行?

1 个答案:

答案 0 :(得分:2)

  

我应该怎么做才能使它在layout_weight方面正常工作?

首先,当weight使用horizontal布局时,width应为0dp。同样,如果您的布局为vertical,则height应为0dp

  

如何避免在TextView中创建新行?

如果您想

,请使用android:singleLine="true"
  

将文本约束为单个水平滚动线,而不是让它换行到多行

TextView Docs

如果这不能回答你的问题,请稍微清楚一点,因为它对你的要求有点混乱。