我试图在某些内容下显示回收者视图列表。我遇到的问题是我的Recyclerview列表没有达到目的。通过示例的最后一个图标只是看到的一半。如果可能的话,我想知道如何在顶部淡出我的列表,这样它似乎不会被切断。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="1"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="?attr/selectableItemBackground"
tools:context="match_parent"
xmlns:tools="http://schemas.android.com/tools">
<com.github.siyamed.shapeimageview.CircularImageView
android:layout_width="87dp"
android:layout_height="63dp"
android:src="@drawable/snappy"
app:siBorderWidth="2dp"
app:siBorderColor="@color/colorPrimary"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_weight="0.02" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Name"
android:id="@+id/textView3"
android:textColor="#116c99"
android:typeface="sans"
android:layout_marginTop="-95dp"
android:layout_marginLeft="110dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Daten"
android:id="@+id/textView5"
android:layout_marginTop="0dp"
android:layout_marginLeft="110dp" />
<TextView
android:layout_width="263dp"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:id="@+id/textView6"
android:textSize="10dp"
android:layout_marginLeft="110dp"
android:layout_marginTop="5dp"
android:text="@string/statusId" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#d8d8d8"
android:layout_marginTop="15dp"
android:layout_marginRight="15dp"
android:layout_marginLeft="15dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Kontaktschriftzug"
android:id="@+id/textView4"
android:layout_marginTop="5dp"
android:textSize="12dp"
android:textColor="#0071a6"
android:typeface="sans"
android:textStyle="bold"
android:layout_marginLeft="15dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Kategorie"
android:id="@+id/textView77"
android:layout_marginTop="10dp"
android:textSize="10dp"
android:textColor="#848484"
android:typeface="sans"
android:layout_marginLeft="15dp" />
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.appmak.ron.recycleviewer.MainActivity"
tools:showIn="@layout/activity_main">
<android.support.v7.widget.RecyclerView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/recycleviewMeineKarte">
</android.support.v7.widget.RecyclerView>
</RelativeLayout>
</LinearLayout>
答案 0 :(得分:0)
在此处删除此行 android:weightSum =“1”:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="1"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="?attr/selectableItemBackground"
tools:context="match_parent"
xmlns:tools="http://schemas.android.com/tools">
在此处删除此行 android:layout_weight =“0.02”:
<com.github.siyamed.shapeimageview.CircularImageView
android:layout_width="87dp"
android:layout_height="63dp"
android:src="@drawable/snappy"
app:siBorderWidth="2dp"
app:siBorderColor="@color/colorPrimary"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_weight="0.02" />
您需要使用 weight 属性让所有视图按预期工作!