1忽媒、layout和layout-v26的區(qū)別
? ? 安卓第26個(gè)版本寓辱,就是8.0粮坞,使用layout-v26里的頁面蚊荣,其他版本使用layout里的頁面。
2莫杈、ScrollView這嵌套recycleView顯示不完全
解決方法:此方法還有一點(diǎn)BUG互例,就是recycleView中滑動(dòng)不順利。
//去掉 recyclerView的滑動(dòng)
recyclerView.setNestedScrollingEnabled(false);
????????加上這一行滑動(dòng)就順暢多了筝闹!
<RelativeLayout
android:layout_width="match_parent"??
android:layout_height="wrap_content"??
android:descendantFocusability="blocksDescendants">??
????????<?RecycleView
????????android:id="@+id/playdate_recyclerview"??
????????android:divider="@color/vr_gray"??
????????android:dividerHeight="1dp"??
????????android:layout_width="match_parent"??
????????android:layout_height="wrap_content"?/>??
</RelativeLayout>
3媳叨、json簡單對(duì)象字符串——>javaBean
Student student = JSON.parseObject(JSON_OBJ_STR,newTypeReference() {});
json簡單對(duì)象字符串——>javaBean組
ArrayList students = JSON.parseObject(JSON_ARRAY_STR,newTypeReference>() {});
4、