假设我有一个或两个项目
RecyclerView
。我怎么能在中心显示它们 RecyclerView 必须有宽度和高度是 match_parent
AFAIK recyclerView
从top
. 我怎么能给gravity = center
它single item
。我的意思是,如果只有 1 个项目出现,它应该位于屏幕中央。
RecylerView没有gravity attribute
. 有没有其他办法。
我无法将其高度设置为 wrap_content。因为我还得加一个swipeRefreshLayout。
布局.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/MatchMatch"
android:background="@color/theme_color_gift_finder">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/activity_main_swipe_refresh_layout"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_gift_menu"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/margin_pad_10" />
</android.support.v4.widget.SwipeRefreshLayout>
<LinearLayout
android:id="@+id/ll_bottom"
style="@style/LinearHorizontal"
android:layout_marginBottom="@dimen/margin_pad_16"
android:background="@android:color/transparent"
android:gravity="center">
<com.netsolace.efc.utility.customviews.widgets.CustomButton
android:id="@+id/btn_go"
android:layout_width="@dimen/circular_go_n_done_btn_size"
android:layout_height="@dimen/circular_go_n_done_btn_size"
android:background="@drawable/oval_generic"
android:text="@string/go"
android:textColor="@color/theme_color_gift_finder"
android:textSize="@dimen/text_size_medium" />
</LinearLayout>
</LinearLayout>
<com.netsolace.efc.utility.customviews.widgets.CustomTextView
android:id="@+id/tv_gift_no_result"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:text="No Results"
android:textColor="@android:color/white"
android:textSize="@dimen/text_size_large"
android:textStyle="bold"
android:visibility="gone" />
</FrameLayout>