相同的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>