android relativelayout高度无法正确工作

问题描述 投票:0回答:1

我希望android:text =“ 30”文本视图在Relativelayout中居中。

但是android:layout_height =“ match_parent”无法正常工作。看起来像“ wrap_content”。

我正在尝试一切我发现再添加一个Relativelayout并可以正常工作。

  1. 文本“ 30”如何移动中心位置
  2. 为什么match_parent不起作用?
  3. 为什么还要再添加一个Relativelayout,然后才能正常工作?

    <androidx.core.widget.NestedScrollView
        android:id="@+id/product_grid"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="56dp"
        android:background="@color/productGridBackgroundColor"
        android:elevation="8dp"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">
    
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:clipChildren="false"
            android:clipToPadding="false"
            android:orientation="vertical"
            android:padding="24dp"
            android:paddingTop="16dp">
    
            <com.google.android.material.card.MaterialCardView
                style="@style/Widget.MaterialComponents.CardView"
                android:layout_height="wrap_content"
                android:layout_width="match_parent"
                android:layout_marginLeft="@dimen/mtrl_card_spacing"
                android:layout_marginTop="@dimen/mtrl_card_spacing"
                android:layout_marginRight="@dimen/mtrl_card_spacing"
                android:minHeight="200dp">
    
                **<!--height = match_parent not working-->**
                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent">
    
                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="@string/home_card_title_level"/>
    
                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
    
                        android:layout_centerHorizontal="true"
                        android:layout_centerVertical="true"
                        android:text="30"/>
    
                </RelativeLayout>
    
                <!--**if this code added then work perfectly**
                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"/>
                -->
    
            </com.google.android.material.card.MaterialCardView>
    
        </LinearLayout>
    </androidx.core.widget.NestedScrollView>
    

not correctadded one more relativelayout

android height android-relativelayout
1个回答
0
投票

删除相对布局并添加android:layout_gravity =“ center

  <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_centerHorizontal="true"
                android:layout_centerVertical="true"
                android:text="30"/>
© www.soinside.com 2019 - 2024. All rights reserved.