我的意见如下:
<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>
如父RelativeLayout
所示,我正在使用android:clipToPadding="true"
和
android:clipChildren="true"
但是这个父视图的孩子仍然在它外面突出。
或者我是这样做的吗?我如何实现CSS的overflow:hidden
?
答案 0 :(得分:7)
考虑更改布局。您想要的是ConstraintLayout
。
只需设置布局的尺寸,不要在要溢出/隐藏的部分上设置约束。
以下代码显示View
将其尺寸调整为约束,另一个溢出。
创建一个新的Android项目并将其粘贴为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>
答案 1 :(得分:4)
您的父视图已
android:layout_width="match_parent"
android:layout_height="wrap_content"
表示如果子视图足够大,视图将获取所有可用宽度并最多可达所有可用高度。使用此设置,您无法看到overflow:hidden
行为,因为父级会自行调整大小以包含最大屏幕尺寸的子项。
实际上,android中的默认视图行为类似于overflow:hidden
。
您需要做什么才能看到它在父级上设置固定维度。
尝试使用类似的东西:
<LinearLayout
android:layout_width="20dp"
android:layout_height="20dp"
你会明白的。
另一方面,您不需要使用LinearLayout来托管RelayiveLayout - 直接使用RelativeLayout。此外,使用android:orientation="horizontal"
使其行为与flexbox方向行类似,不确定这是否是您想要的。