gpt4 book ai didi

android - 我怎样才能在 android studio 中使用图像中的这样的代码做一个圆形的工具栏/操作栏?

转载 作者:行者123 更新时间:2023-12-04 10:55:36 24 4
gpt4 key购买 nike

关闭。这个问题需要更多focused .它目前不接受答案。












想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post .

1年前关闭。




Improve this question




我正在尝试使用代码而不是背景图像来执行此操作

here you can find the example image i'm referring in the question

最佳答案

像这样定义xml文件
(这就是我如何圆我的底部)
将xml文件放在drawable文件夹中

 <?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
>
<corners
android:radius="25dip" />
<stroke
android:width="1dp"
android:color="#000000" />
</shape>

并将xml文件放在背景属性中
  <Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/dateButton"
android:background="@drawable/shape"

></Button>

所以也许它与工具栏一样?

关于android - 我怎样才能在 android studio 中使用图像中的这样的代码做一个圆形的工具栏/操作栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59221483/

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