weightSum无法正常工作

时间:2013-04-06 20:03:27

标签: android android-linearlayout android-imageview textview

我有一个LinearLayout,在LinearLayout中我有一个ImageView和一个TextView。我想设置每个%50宽度。我为此目的使用了weightSumlayout_weight,但我的工作无效。如何为每个视图设置50%的宽度

如下所示,权重= 10且TextViewImageView的权重为5

enter image description here

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/my_root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="0dp"
android:background="#3e4231"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.hakkikonu.countriesultimate.CountryDetails" >

<TextView
    android:id="@+id/tv_show_extra"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="0dp"
    android:layout_marginTop="0dp"
    android:background="#ff4444"
    android:text="Country Name"
    android:textColor="#FFFFFF"
    android:textSize="24sp" />

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

    <ImageView
        android:id="@+id/iv_bayrak_goster"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="5"
        android:adjustViewBounds="true"
        android:baselineAlignBottom="false"
        android:src="@drawable/default_flag" />

    <TextView
        android:id="@+id/tv_capital"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginBottom="0dp"
        android:layout_marginTop="0dp"
        android:background="#ff4444"
        android:text="Capital"
        android:textColor="#FFFFFF"
        android:textSize="16sp" 
        android:layout_weight="5"/>

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

对于权重为10的布局,将android:layout_width设置为0dp而不是匹配parent。