1、webview显示不全问题
情景:项目中scrollview嵌套webview(webview设置权重,以求占满剩余空间),第二次进入出现显示不全的问题。
方法:webview外套一个布局eg.LinearLayout,并设置LinearLayout权重占满剩余空间即可。
正确展示:
<Scrollview
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView ..../>
...........
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:weight="1"
android:orientation="vertical">
<WebView ..../>
</LinearLayout>
</LinearLayout>
</Scrollview>
2、自定义dialog,部分机型出现老的界面
方法:
requestWindowFeature(Window.FEATURE_NO_TITLE);//加上这一句,取消原来的标题栏,没加这句之前,发现在三星等手机上会有一条蓝色的线