由于某些原因,刷卡刷新布局下的我的imageview不会显示。 recyclerview中的元素显示正常,但recylerview下的任何内容都不会。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="wrap_content"
tools:context="com.example.disen.chefu.food_categories.second_category">
<android.support.v4.widget.SwipeRefreshLayout
android:layout_width="wrap_content"
android:layout_marginBottom="@dimen/activity_horizontal_margin"
android:id="@+id/refresh_second_catg"
android:layout_height="wrap_content">
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:id="@+id/second_category_rcV"
android:layout_height="wrap_content">
</android.support.v7.widget.RecyclerView>
</android.support.v4.widget.SwipeRefreshLayout>
<ImageView
android:layout_width="wrap_content"
android:src="@drawable/light"
android:layout_height="wrap_content" />
<ProgressBar
android:layout_width="wrap_content"
android:id="@+id/second_progress"
android:visibility="invisible"
android:layout_gravity="center_horizontal|center_vertical"
android:indeterminateBehavior="repeat"
android:layout_height="wrap_content" />
</LinearLayout>