//权限和依赖
implementation 'com.squareup.okhttp3:okhttp:3.11.0' implementation 'com.google.code.gson:gson:2.8.1' implementation 'com.android.support:recyclerview-v7:27.1.1' implementation 'com.github.bumptech.glide:glide:4.8.0' <uses-permission android:name="android.permission.INTERNET"/>//main
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" > <android.support.v7.widget.RecyclerView android:id="@+id/rec_left" android:layout_width="wrap_content" android:layout_height="wrap_content"></android.support.v7.widget.RecyclerView> </LinearLayout> <ScrollView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="30dp" > <LinearLayout android:id="@+id/right_lnl" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" android:layout_marginLeft="20dp" ></LinearLayout> </ScrollView> </LinearLayout>
//item_list
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <TextView android:id="@+id/txt_left" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="haha" android:textSize="20dp" android:padding="10dp" /> </LinearLayout>//item_right
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <ImageView android:id="@+id/img_right" android:layout_width="75dp" android:layout_height="75dp" android:padding="10dp" /> <TextView android:id="@+id/txt_right" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dp" /> </LinearLayout>
