gpt4 book ai didi

java - 如何在 View 中放置自定义形状?

转载 作者:行者123 更新时间:2023-11-29 10:06:27 30 4
gpt4 key购买 nike

我在我的 res/drawable 文件夹中定义了一个自定义形状:

<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke
android:color="#FF404040"
android:width="1dp"
android:dashGap="3dp"
android:dashWidth="3dp"
/>
<size
android:height="1dp"
/>
</shape>

我用它作为我的一个观点的背景。该形状在 View 内垂直居中放置,但我希望它出现在 View 底部,有没有办法做到这一点?

最佳答案

我不确定是否有办法在 View 内进行位置调整。但是,作为一种解决方法,我会考虑这样的事情。

<RelativeLayout >
<OldView with shape as background now without any background
android:layout_alignParentTop="true" android:layout_alignParentBottom="true"/>
<View with this shape as background
android:layout_alignParentBottom="true"/>
</RelativeLayout>

这应该会为您提供您想要实现的目标。

关于java - 如何在 View 中放置自定义形状?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6637690/

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