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