当我不得不在片段中将数据显示到recyclerview中时,我的代码出现问题。当我将此程序内置到手机中时。尽管我必须使用Object.RequireNonNull,但它不能显示null。但是,它没有用。这是我的代码
ProductList.java
public static final String API_BASE_URL = "https://vandc-2c37c.firebaseio.com/";
public static Retrofit retrofit = null;
public static Retrofit getDataItems()
{
if(retrofit == null)
{
OkHttpClient httpClient = new OkHttpClient();
retrofit = new Retrofit.Builder().baseUrl(API_BASE_URL).addConverterFactory(GsonConverterFactory.create()).client(httpClient).build();
}
return retrofit;
}
RestClient.java
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".productList">
<!-- TODO: Update blank fragment layout -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/sendbox_data_items_list"
android:textSize="30sp"
android:gravity="center"
android:layout_marginTop="50dp"
android:layout_marginStart="@dimen/layout_horizontal_margin"
android:layout_marginEnd="@dimen/layout_horizontal_margin"
android:layout_marginBottom="@dimen/layout_vertical_marginBottom"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/data_items"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:layout_margin="@dimen/layout_horizontal_margin">
</android.support.v7.widget.RecyclerView>
</LinearLayout>
</FrameLayout>
在我的Fragment XML代码中,我将使用
check