我在我的应用程序列表元素中创建了用于滑动的操作。问题是,在滑动后显示一个视图时,删除图标不会显示在垂直中心。有趣的是,问题只出在Android 20以下的SDK中。
ListElement.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/listObjectRelativeLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/background"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/divider"
android:layout_alignParentTop="true"
android:background="@color/swipeBackground"
android:tag="reveal-left">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="20dp"
android:src="@drawable/ic_delete_white_24dp" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/divider"
android:layout_alignParentTop="true"
android:background="@color/swipeBackground"
android:tag="reveal-right">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:scaleType="fitCenter"
android:layout_marginLeft="20dp"
android:src="@drawable/ic_delete_white_24dp" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/contextRelativeLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:tag="front">
<Button
android:id="@+id/roundButton"
android:layout_width="16dp"
android:layout_height="16dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="16dp"
android:layout_marginTop="16dp"
android:background="@drawable/round_0"
android:scaleType="fitCenter" />
<TextView
android:id="@+id/nameTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="40dp"
android:layout_marginTop="16dp"
android:fontFamily="sans-serif-medium"
android:text="Hello"
android:textColor="@color/primaryDark" />
</RelativeLayout>
<View
android:id="@+id/divider"
android:layout_width="match_parent"
android:layout_height="10dp"
android:layout_below="@id/contextRelativeLayout"
android:background="@color/background" />
</RelativeLayout>