gpt4 book ai didi

android - 如何在android中制作一个圆形搜索栏,其图像适合其圆圈

转载 作者:行者123 更新时间:2023-11-30 01:33:07 24 4
gpt4 key购买 nike

我想为我的应用程序制作一个圆形搜索栏,其图像适合其圆圈,我使用了此链接 https://github.com/devadvance/circularseekbar用于制作圆形搜索栏,效果很好,但我无法设置适合我应用程序所需的圆圈的图像。这是我要设置为适合圆圈的图像 enter image description here

和我必须设置此图像的圆形搜索栏。有没有人可以帮助我提前谢谢。

enter image description here

最佳答案

我正在写另一个答案,因为评论太长了。

View.post(new Runnable());这样,当 View 在屏幕上时,将触发 Runnable 内的操作,它具有最终的宽度和高度。

您可以获得搜索栏的实际宽度和高度,并将此宽度和高度提供给 ImageView。

convertDpToPixel 方法 将 dp 值转换为实际设备像素。您可以试验 (int dp) 值。您应该为 ImageView 提供较小的值,以便它位于 SeekBar 内

    final CircularSeekBar circularSeekBar = new CircularSeekBar(getActivity());
final ImageView imageView = new ImageView(getActivity());
final int dp = (int) Utilities.convertDpToPixel(5, getActivity());
circularSeekBar.post(new Runnable() {
@Override
public void run() {
imageView.setLayoutParams(new RelativeLayout.LayoutParams(circularSeekBar.getWidth() - dp,
circularSeekBar.getHeight() - dp));
}
});

关于android - 如何在android中制作一个圆形搜索栏,其图像适合其圆圈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35504091/

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