skip to Main Content

Android Retrofit how to load data and load image independent to recycler view

I'm using Retrofit to load data from web api and display data to recyclerview. Here are my layout: Item of recycler view: <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:weightSum="100" > <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginBottom="10dp" android:layout_weight="30" > <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent"> <android.support.v7.widget.CardView android:layout_width="match_parent" android:layout_height="match_parent"…

VIEW QUESTION
Back To Top
Search