我正在尝试将应用从iOS移植到Android。在我的iOS应用程序中,我有一个显示地图的图像视图,在它上面我想在某些特定位置显示多个按钮视图。
Android中的标准视图似乎都不符合我的需求,但我肯定遗漏了一些东西。我怎么能做到这一点?
由于
答案 0 :(得分:1)
最简单的方法是使用最适合您需要的任何布局(LinearLayout,FrameLayout,RelativeLayout等),并将其背景设置为您需要的任何图像。我相信图像会自动缩放以填充相应的布局。将图像放入适当的drawable
文件夹中 - 并将XML格式化为:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/buttons"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_image">
...
</RelativeLayout>