如何包装一个布局

如何包装一个布局

本文介绍了Android的:如何包装一个布局,其观点不超过一个固定的大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我才能有三个固定的看法正在使用此布局。

I am using this layout in order to have three fixed views.


<TextView
    android:id="@+id/title"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="2"
    android:textColor="#372c24"
    android:paddingLeft="10dp"/>

<View
    android:id="@+id/space"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="5"
    android:background="@android:color/transparent" />

<LinearLayout
    android:id="@+id/ratingLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="4"
    android:orientation="horizontal"
    android:background="@drawable/shape_popup">
    <TextView
        android:id="@+id/rateNumber"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="2"
        android:gravity="center_horizontal"
        android:paddingTop="2dp"
      />
    <ImageView
        android:contentDescription="@string/app_name"
        android:id="@+id/rateStar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="2"
        android:layout_gravity="center_horizontal"
        android:src="@drawable/rate_star"/>
</LinearLayout>

我希望我的ratingLayout来包装其内容,但不能超过其固定大小。这可能吗?

I want my ratingLayout to wrap its content but not to exceed its fixed size. Is that possible?

推荐答案

在ratingLayout取出加权,并设定rateNumber和rateStar意见layout_width属性为WRAP_CONTENT,而不是match_parent。

Remove the weighting on the ratingLayout, and set the rateNumber and rateStar views' layout_width property to "wrap_content" instead of "match_parent".

这篇关于Android的:如何包装一个布局,其观点不超过一个固定的大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-01 17:41