安卓okhttp的Retrofit 坑,信任所有证书
用了 @Headers 这个注解
看看加没加
"Accept-Encoding: gzip, deflate, br",
加了这个 返回的话可能是乱码
用了 @Headers 这个注解
看看加没加
"Accept-Encoding: gzip, deflate, br",
加了这个 返回的话可能是乱码
在安卓LinearLayout布局中使用ScrollView里面只能包含一个子组件
如果里面是textview 只能包含一个 不能包含第二个
正确列子
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
android:layout_weight="1"
>
<TextView
android:id="@+id/text_show"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" "
/>
</ScrollView>
错误列子
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
android:layout_weight="1"
>
<TextView
android:id="@+id/text_show"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" "
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</ScrollView>