Android :如何按父级剪辑视图,如 CSS 溢出:隐藏

2022-09-02 13:43:53

我有以下观点:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="@dimen/global_legal_gap"
    android:clipToPadding="true"
    android:clipChildren="true"
    android:baselineAligned="false"
    android:background="@drawable/post_sound_bg"
    android:foreground="?attr/selectableItemBackgroundBorderless"
    android:orientation="horizontal">

    <RelativeLayout
        android:layout_width="@dimen/post_sound_card_height"
        android:layout_height="@dimen/post_sound_card_height">

        <com.facebook.drawee.view.SimpleDraweeView
            android:id="@+id/album_art"
            android:layout_width="@dimen/post_sound_card_height"
            android:layout_height="@dimen/post_sound_card_height"
            fresco:backgroundImage="@drawable/music_placeholder" />

        <RelativeLayout
            android:id="@+id/play_icon_control"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignParentBottom="true"
            android:visibility="gone">

            <View
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_centerInParent="true"
                android:layout_margin="3dp" />
        </RelativeLayout>
    </RelativeLayout>
<LinearLayout>

如父视图所示,我正在使用 和 ,但这个父视图的子视图仍然突出在它之外。RelativeLayoutandroid:clipToPadding="true"android:clipChildren="true"

或者我做对了吗?我如何实现像CSS这样的东西?overflow:hidden


答案 1

考虑更改布局。你想要的可以用 来完成。ConstraintLayout

只需设置布局的尺寸,不要对要溢出/隐藏的部分设置约束。

下面的代码演示一个,它将尺寸调整为其约束,另一个溢出。View

enter image description here

创建一个新的机器人项目并将其粘贴为activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:layout_margin="55dp">


    <ImageView
        android:id="@+id/imageView3"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintBottom_toTopOf="@+id/guideline"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:srcCompat="@android:drawable/sym_def_app_icon"/>

    <android.support.constraint.Guideline
        android:id="@+id/guideline"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        app:layout_constraintGuide_begin="84dp"/>

    <ImageView
        android:id="@+id/imageView4"
        android:layout_width="0dp"
        android:layout_height="300dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="@+id/guideline"
        app:srcCompat="@mipmap/ic_launcher"/>
</android.support.constraint.ConstraintLayout>

答案 2

您的父视图具有

android:layout_width="match_parent"
android:layout_height="wrap_content"

这意味着,如果子视图足够大,则该视图采用所有可用宽度,并且最高可达所有可用高度。使用此设置,您无法看到该行为,因为父级将调整自身大小以包含整个屏幕大小的子项。overflow:hidden

实际上,Android中的默认视图行为类似于.overflow:hidden

你需要做的是让它在父项上设置固定的尺寸。

只需尝试使用如下内容:

<LinearLayout
    android:layout_width="20dp"
    android:layout_height="20dp"

你会明白的。

另一方面,您不需要拥有线性布局来托管RelayiveLayout - 直接使用相对布局。此外,使用使其行为类似于flexbox方向行,不确定这是否是您想要的。android:orientation="horizontal"


推荐