不同的os具有相同的xml布局的不同结果?

时间:2013-10-01 12:29:07

标签: android android-layout

相同的xml布局代码会在相同的分辨率/密度设备上产生不同的外观。 请参阅下面的附件。 任何人都可以告诉我这可能是什么问题吗? 我用2 textview尝试了它,但它与所有操作系统一致。唯一的问题是当我使用按钮然后出现这个问题。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <Button
        android:id="@+id/btnHello"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:background="@android:color/transparent"
        android:text="@string/hello_world"
        android:textColor="@android:color/white" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toLeftOf="@id/btnHello"
        android:paddingLeft="15dp"
        android:text="@string/hello_world" />

</RelativeLayout>

enter image description here

enter image description here

enter image description here

enter image description here

0 个答案:

没有答案