Android 删除 RelativeLayout 中的默认边距
Android Remove default margins in RelativeLayout
如何移除 RelativeLayout 中元素的默认间距?
我试过设置负边距和权重 属性,但没有得到任何结果。
我正在尝试删除 space,这样我的 ListView 行就没有垂直长度了。
这个人在做类似的事情,这是我遇到的第二个问题,但是负边距的方法不起作用。
How do I reduce the padding around text in Android xml layout?
如何删除 space?
单元格的较短版本 XML:
<LinearLayout xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/OrderRows"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout
style="?commonRowStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:layout_marginStart="0sp"
android:layout_marginEnd="0sp"
android:orientation="vertical">
<TextView
android:id="@+id/orderStatus"
style="?orderParameterStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:includeFontPadding="false"
android:text="@string/orderStatusSuspendedMobile"
android:textSize="@dimen/textSizeSecondary" />
<TextView
android:id="@+id/filled"
style="?orderParameterStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:includeFontPadding="false"
android:text="filled"
android:textSize="10sp" />
</LinearLayout>
</RelativeLayout>
删除此样式
style="?commonRowStyle"
如何移除 RelativeLayout 中元素的默认间距?
我试过设置负边距和权重 属性,但没有得到任何结果。
我正在尝试删除 space,这样我的 ListView 行就没有垂直长度了。
这个人在做类似的事情,这是我遇到的第二个问题,但是负边距的方法不起作用。 How do I reduce the padding around text in Android xml layout?
如何删除 space?
单元格的较短版本 XML:
<LinearLayout xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/OrderRows"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout
style="?commonRowStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:layout_marginStart="0sp"
android:layout_marginEnd="0sp"
android:orientation="vertical">
<TextView
android:id="@+id/orderStatus"
style="?orderParameterStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:includeFontPadding="false"
android:text="@string/orderStatusSuspendedMobile"
android:textSize="@dimen/textSizeSecondary" />
<TextView
android:id="@+id/filled"
style="?orderParameterStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:includeFontPadding="false"
android:text="filled"
android:textSize="10sp" />
</LinearLayout>
</RelativeLayout>
删除此样式
style="?commonRowStyle"