我有一个16dp填充的相对布局,其中包含(除其他外)具有以下尺寸的按钮:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:padding="16dp">
<Button
android:layout_width="match_parent"
android:layout_height="48dp"
android:text="@string/btn_next"
android:id="@+id/btn_next"
style="@style/myStyle"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
在nexus 5上,它按预期显示:
然而,在三星Galaxy S5上,右侧似乎被切断:
我知道三星喜欢对Android进行奇怪的更改,但我认为它不会影响视图的显示方式。其他人遇到过这个问题吗?
编辑1:我已经包含了按钮使用的样式,但我的应用程序中还有其他区域(例如带有match_parent宽度的TextView)。
<style name="myStyle" parent="My.Button">
<item name="android:textColor">@color/primary_button_text_selector</item>
<item name="android:background">@drawable/primary_button_selector</item>
</style>