Android自定义组件宽度与父级不匹配

时间:2013-10-23 13:03:18

标签: android layout width android-linearlayout custom-component

我有一个简单的组件 - InfoPanel扩展了LinearLayout,其中包含3个另外的线性布局。这3个线性布局中的每一个都包含2个文本视图。

<?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:background="#F0F"
    android:orientation="horizontal"
    android:baselineAligned="false" >

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="0.3"
        android:background="@android:color/transparent"
        android:gravity="left|center_vertical" >

                 <TextView
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:layout_weight="0.5"
                     android:background="@android:color/transparent"
                     android:gravity="right|center_vertical"
                     android:text="@string/info_lineM" />

                 <TextView
                    android:id="@+id/info_lineM"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:layout_weight="0.5"
                     android:background="@android:color/transparent"
                     android:gravity="left|center_vertical"/>

    </LinearLayout>

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="0.4"
        android:gravity="center_horizontal|center_vertical"
                 android:background="@android:color/transparent">

                 <TextView
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:layout_weight="0.5"
                     android:background="@android:color/transparent"
                     android:gravity="right|center_vertical"
                     android:text="@string/info_lineC" />

                 <TextView
                    android:id="@+id/info_lineC"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:layout_weight="0.5"
                     android:background="@android:color/transparent"
                     android:gravity="left|center_vertical" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="0.3"
        android:gravity="right|center_vertical"
                 android:background="@android:color/transparent">

                 <TextView
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:layout_weight="0.5"
                     android:background="@android:color/transparent"
                     android:gravity="right|center_vertical"
                     android:text="@string/info_lineG" />

                 <TextView
                    android:id="@+id/info_lineG"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
                     android:layout_weight="0.5"
                     android:background="@android:color/transparent"
                     android:gravity="left|center_vertical" />
    </LinearLayout>
</LinearLayout>

此组件的Java类非常简单:

public class InfoPanel extends LinearLayout{
public InfoPanel(Context ctx)
    {
        super(ctx);
        LayoutInflater.from(ctx).inflate(R.layout.info_panel, this);
    }

    public InfoPanel(Context ctx, AttributeSet attr)
    {
        super(ctx,attr);
        LayoutInflater.from(ctx).inflate(R.layout.info_panel, this);
    }
    @Override
    public void onFinishInflate()
    {
        super.onFinishInflate();
    }
}

我使用该组件的主XML似乎是:

<TableRow
    android:id="@+id/tableRow2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <com.project.my.components.InfoPanel
        android:id="@+id/InfoPanel"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</TableRow>

问题是,我的组件宽度只有屏幕宽度的10%左右。现在我正试图搜索一些相同的问题(我发现很多主题,但没有任何对我有用)超过5小时..:/我猜它的东西真的很小而且我想念的东西很愚蠢。谢谢你的想法。

1 个答案:

答案 0 :(得分:1)

这很好,你找到问题的解决方案,表行具有使用所有行中第一行属性的默认行为。但删除它解决了你的问题,这是关键的事情。