我正在使用Recyclerview,但是不知何故在上面添加了额外的空间。我也检查了item.xml,但没有发现任何问题。
这是我的team_list_item.xml的代码:
<?xml version="1.0" encoding="utf-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/teamMemberName"
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="@drawable/border"
android:text="Rahul"
android:gravity="center"
android:textSize="22sp"
android:layout_marginBottom="10dp"
/>
这是fragment_team_list.xml的代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent"
>
<android.support.v7.widget.RecyclerView
android:id="@+id/teamRecyclerView"
android:scrollbars="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
</android.support.v7.widget.RecyclerView>
</LinearLayout>
这是安装App时收到的屏幕截图:
答案 0 :(得分:0)
检查添加了片段的活动布局。然后从activity.xml文件中删除空间。希望对您有用。