如何设定宽度和高度的重量?

时间:2015-05-20 13:16:32

标签: android view height width android-layout-weight

我需要创建宽度和高度的视图动态,这是父大小的百分比。所以我需要为一个视图添加宽度和高度的权重。 有可能吗?

3 个答案:

答案 0 :(得分:2)

<LinearLayout


     android:layout_width="match_parent"
        android:layout_height="100dp"
        android:weightSum="4"
        android:orientation="horizontal">

<ImageView
                android:layout_width="0dp"
            android:layout_height="80dp"
            android:layout_weight="1"

              android:gravity="center"

                android:id="@+id/imgtype"
android:scaleType="fitCenter"
                />

 <TextView
            android:layout_width="0dp"
            android:layout_height="80dp"
            android:layout_weight="3"
            android:id="@+id/txtsubject"
            android:textStyle="bold"
            android:textSize="@dimen/lat_sub_text_size"

            android:textColor="@android:color/black"/>


<LinearLayout/>

这里你可以将父线性布局宽度的主要部分划分为文本视图,而将剩余的次要部分划分为图像视图,这是为了水平对齐,也可以为垂直对齐。父级的属性决定了它的部件数量将包含。

答案 1 :(得分:1)

例如,我有以下布局:

<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:id="@+id/ll_forImage"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />    
    </LinearLayout>
    <LinearLayout
        android:id="@+id/ll_forList"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <ListView
            android:layout_width="match_parent"
            android:layout_height="match_parent">

        </ListView>    
    </LinearLayout>
</LinearLayout>

现在,我将根据屏幕宽度和屏幕高度为每个视图设置宽度和高度。

int screenWidth = dpToPx(getResources().getConfiguration().screenWidthDp);
int screenHeight = dpToPx(getResources().getConfiguration().screenHeightDp);
int ratioW = ....;//
int ratioH = ....;//
setLayoutSize(ll_forImage, screenWidth/ratioW , screenHeight/ratioH );
setLayoutSize(ll_forList, screenWidth/ratioW , screenHeight - screenHeight/ratioH );
// You can use setTranslation to translate View to expected position.

with:

private int dpToPx(int dp) {
    return (int) (dp * getResources().getDisplayMetrics().density + 0.5f);
}

private static void setLayoutSize(View view, int width, int height) {
    ViewGroup.LayoutParams params = view.getLayoutParams();
    params.width = width;
    params.height = height;
    view.setLayoutParams(params);
}

答案 2 :(得分:1)

使用LinearLayout时,添加layout_weight是一种很好的方法。 请记住,layout_weight仅在LinearLayout的情况下有效,不能与RelativeLayout一起使用。