我想用eclipse在android上设置旋转半轮菜单。我有一个完整的车轮图像,我想把它放在屏幕的底部。我必须将整个车轮的中点放在屏幕的底部以获得半轮菜单。我在xml
上尝试过该代码
它在仿真器上的仿真并不能让我满意。因为车轮图像位于屏幕的中心。我希望它放在我的旋转半轮菜单应用程序的底部。我也知道我可以用android:layout_marginTop="600dp"
设置它,但我希望在使用Android操作系统的手机上提供其他屏幕尺寸的兼容性。
答案 0 :(得分:0)
您可以在该图片之外使用RelativeLayout
并在图片android:layout_alignParentBottom="true"
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:src="@drawable/ic_launcher" />
</RelativeLayout>