使图像视图在每个设备中看起来都一样

时间:2016-11-15 00:39:38

标签: android xml

我有一个图像视图和一个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" />

It have to look like this

2 个答案:

答案 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。 例:                    

试试这个..希望它会起作用