Android不寻常的图像

m4pnthwp  于 2024-01-04  发布在  Android
关注(0)|答案(1)|浏览(160)

我正试图在我的android应用程序中创建一个类似的主菜单设计,你可以在我的附件中看到。
问题是,菜单按钮不是水平的,而是倾斜的,部分相互重叠。
我在RelativeLayout中尝试了类似于ImageButton的东西:

  1. <ImageButton
  2. android:id="@+id/simpleImageButton1"
  3. android:layout_width="wrap_content"
  4. android:layout_height="wrap_content"
  5. android:src="@drawable/menu1"/>
  6. <ImageButton
  7. android:id="@+id/simpleImageButton2"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:layout_below="@id/simpleImageButton1"
  11. android:src="@drawable/menu2"/>

字符串
但由于图像不是水平的,我需要将每个图像存储为具有透明底部和上部的水平图像,然而,这导致这些部分也可以单击,并且由于它们重叠,两个可单击部分将发生碰撞。
有什么好的解决方案可以让它工作吗?
由于这个菜单将被修复,所以没有更多的项目将被添加,我还认为,使它作为一个背景图像,也许以某种方式使无形的按钮只是每个按钮的一部分,或Map以某种方式每个可点击的区域。
但是,我还是更愿意使用ImageData或更简单的方法。


的数据

carvr3hs

carvr3hs1#

您可以尝试使用FrameLayout将多个按钮放置在所需的Angular 并相互重叠。使用属性android:rotationandroid:layout_margin来控制按钮之间的Angular 和重叠。
下面是一个示例:
示例应用程序:https://github.com/bgizdov/android-overlapped-rotated-image-buttons


的数据

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <ImageButton
  6. android:id="@+id/simpleImageButton1"
  7. android:layout_width="wrap_content"
  8. android:layout_height="wrap_content"
  9. android:src="@drawable/menu1"
  10. android:layout_marginTop="50dp"
  11. android:layout_marginLeft="50dp"
  12. android:background="@null"
  13. android:foreground="?android:attr/selectableItemBackground"
  14. android:rotation="15" />
  15. <ImageButton
  16. android:id="@+id/simpleImageButton2"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:src="@drawable/menu2"
  20. android:layout_marginTop="150dp"
  21. android:layout_marginLeft="50dp"
  22. android:background="@null"
  23. android:foreground="?android:attr/selectableItemBackground"
  24. android:rotation="-10" />
  25. <ImageButton
  26. android:id="@+id/simpleImageButton3"
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:src="@drawable/menu3"
  30. android:layout_marginTop="300dp"
  31. android:layout_marginLeft="50dp"
  32. android:background="@null"
  33. android:foreground="?android:attr/selectableItemBackground"
  34. android:rotation="15" />
  35. </FrameLayout>

字符串

展开查看全部

相关问题