布局之间有空白的问题:
问题出在此空间的ID和街道(那条细线)之间,没有显示点击动画。 android:layout_below可能会在这里工作,但不能用于布局。那是布局代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:clickable="false">
<android.support.v7.widget.CardView
android:id="@+id/fullCardView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardCornerRadius="3dp"
android:elevation="5dp"
>
<LinearLayout
android:id="@+id/linearID"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TextView
android:id="@+id/tvFullId"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingStart="10dp"
android:paddingTop="5dp"
android:gravity="end"
android:background="?android:attr/selectableItemBackground"
android:paddingEnd="20dp"
android:textSize="16dip"
android:text="Id"
android:clickable="false"/>
</LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="30dp">
<TextView
android:id="@+id/tvFullStreet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end"
android:background="?android:attr/selectableItemBackground"
android:paddingEnd="20dp"
android:paddingStart="10dip"
android:paddingTop="15dp"
android:textSize="16dip"
android:text="street"
android:clickable="false"/>
<TextView
android:id="@+id/tvFullCity"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end"
android:paddingEnd="20dp"
android:background="?android:attr/selectableItemBackground"
android:layout_below="@id/tvFullStreet"
android:paddingBottom="10dp"
android:paddingStart="10dip"
android:textSize="16dip"
android:text="city"
android:clickable="false"/>
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="10dp">
<TextView
android:id="@+id/tvFullEndDate"
android:layout_width="200dp"
android:layout_height="match_parent"
android:paddingTop="5dp"
android:textSize="16dip"
android:text="end date"
android:clickable="false"/>
<TextView
android:id="@+id/tvTimeFullLeft"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="bottom"
android:layout_below="@id/tvFullEndDate"
android:paddingTop="30dp"
android:paddingBottom="5dp"
android:text="Ważne przez: "/>
</RelativeLayout>
</android.support.v7.widget.CardView>
</RelativeLayout>
我认为可能是由于paddingTop="30dp"
中的RelativeLayout
,但我不知道如何解决。
答案 0 :(得分:0)
由于您要在相对布局30dp中设置填充而出现问题
更改此
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="30dp">
使用
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp">
答案 1 :(得分:0)
我认为您的xml应该像
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="false">
<android.support.v7.widget.CardView
android:id="@+id/fullCardView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="5dp"
app:cardCornerRadius="3dp"
>
<LinearLayout
android:id="@+id/linearID"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/tvFullId"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/selectableItemBackground"
android:clickable="false"
android:gravity="end"
android:paddingStart="10dp"
android:paddingTop="5dp"
android:paddingEnd="20dp"
android:text="Id"
android:textSize="16dip" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tvFullStreet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/selectableItemBackground"
android:clickable="false"
android:gravity="end"
android:paddingStart="10dip"
android:paddingTop="15dp"
android:paddingEnd="20dp"
android:text="street"
android:textSize="16dip" />
<TextView
android:id="@+id/tvFullCity"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/tvFullStreet"
android:background="?android:attr/selectableItemBackground"
android:clickable="false"
android:gravity="end"
android:paddingStart="10dip"
android:paddingEnd="20dp"
android:paddingBottom="10dp"
android:text="city"
android:textSize="16dip" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="10dp">
<TextView
android:id="@+id/tvFullEndDate"
android:layout_width="200dp"
android:layout_height="match_parent"
android:clickable="false"
android:paddingTop="5dp"
android:text="end date"
android:textSize="16dip" />
<TextView
android:id="@+id/tvTimeFullLeft"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/tvFullEndDate"
android:gravity="bottom"
android:paddingTop="30dp"
android:paddingBottom="5dp"
android:text="Ważne przez: " />
</RelativeLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
</RelativeLayout>