我想在每个数字上方添加按钮。我通过在数字位置上方放置按钮来做到,但是当我在其他分辨率移动设备中运行时,按钮不在其位置。可能是由于其他高分辨率移动设备中的图像扩展正在发生。 有没有办法实现这个目标?
这是我的activity_main.xml
<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"
android:background="@drawable/image1"
tools:context="com.homescreenapp.MainActivity" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:orientation="vertical"
android:weightSum="5" >
</LinearLayout>
<ImageButton
android:id="@+id/imageButton4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="85dp"
android:layout_marginLeft="50dp"
android:layout_toRightOf="@+id/linearLayout1"
android:layout_weight="1"
android:src="@drawable/twleve" />