同じ xml レイアウト コードを使用すると、同じ解像度/密度のデバイスで外観が異なります。以下の添付画像をご覧ください。何が問題なのか教えてもらえますか?2つのテキストビューで試しましたが、すべてのOSと一致しています。唯一の問題は、ボタンを使用すると、この問題が発生することです。
<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>