gpt4 book ai didi

Android Material 设计 - LinearLayout elevation

转载 作者:太空宇宙 更新时间:2023-11-03 10:18:34 24 4
gpt4 key购买 nike

我刚开始进行 Material 设计,但在使用 CardView 以外的任何东西时都遇到了问题。具体来说,它应该在 LinearLayout 上工作吗?

<LinearLayout
android:paddingTop="10dp"
android:orientation="vertical"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="2dp">
<LinearLayout
android:id="@+id/shareLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="10dp">

<ImageView
android:id="@+id/shareIcon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_share_black_48dp"/>
<TextView
android:id="@+id/shareText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:paddingLeft="10dp"
android:text="@string/action_share"/>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_computer_black_48dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:paddingLeft="10dp"
android:text="@string/action_desktop"/>
</LinearLayout>

</LinearLayout>

此代码不会产生可见的布局高程 - 没有阴影。如果我把它放在 CardView 中,提升会起作用,但是我在触发点击事件时遇到了问题。我试过删除图像,但没有效果。我是否只需要将我想要提升的所有内容都包装在 CardView 中,还是有其他方法?谢谢。

我正在运行 Android 5.0.2 的 Nexus 7 上进行测试。

更新

我按照建议尝试了 outline provider,结果出现了阴影,但是很奇怪。

Screenshot

看起来 LinearLayout 是有角度的,而不是只是升高的。更改边距似乎没有帮助。有人有任何其他想法吗?

最佳答案

使用 ViewOutlineProvider 为所有 View 生成阴影。如果设置了背景,则此类提供程序会自动从 View 的背景中生成。阴影采用背景的形状和透明度。要使透明 View 转换阴影,您必须设置自己的 ViewOutlineProvider:

view.setOutlineProvider(new ViewOutlineProvider() {
@Override
public void getOutline(View view, Outline outline) {
outline.setRect(0, 0, view.getWidth(), view.getHeight());
}
});

确保阴影转换器有足够的空间来绘制它的阴影。默认情况下,CardView 为此目的添加自己的填充。

关于Android Material 设计 - LinearLayout elevation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30332681/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com