我有一个图像视图和一个textView。
当我在更大的设备上测试时,图像会改变他的位置。
layout xml:
<TextView
android:id="@+id/monedas_pow"
android:text="300"
android:textSize="29sp"
android:layout_marginLeft="10dp"
android:textColor="@color/titlecolor"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<ImageView
android:id="@+id/summary_btn"
android:src="@drawable/coin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="525dp"
android:layout_toRightOf="@id/monedas_pow"
android:layout_marginTop="8dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="280dp" />
答案 0 :(得分:0)
因为你在底部和右边有很大的边距。只需删除左下边距并添加android:layout_alignBaseline="@+id/monedas_pow"
您在toRightOf
中遗失了+所以请添加android:layout_toRightOf="@+id/monedas_pow"
答案 1 :(得分:0)
使用RelativeLayout,为text_view指定align_centerInParent = true,并使用layout_below =“your text view id”到image_view。 例:
试试这个..希望它会起作用