我在放appDelegate
时遇到问题因为空间吃得越来越大。
当我在wrap_content中时,它工作正常,但是当我转动时,我有一半的空白屏幕。
有没有办法解决它?
我的滚动(行静态,不是动态):
android:layout_width="fill_parent"
我的行
<ScrollView
android:id="@+id/scrollView19"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:fillViewport="true">
我的空间滚动
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center">
我正在尝试测试Android(Google)的所有滚动视图案例没有任何不足。
答案 0 :(得分:1)
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="Match_parent"
android:layout_weight="0.7"
android:gravity="center">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1.3">
Do try with the weights,may be it would work for you....
答案 1 :(得分:0)
我解决了创建一个新的布局 - 土地,似乎开发人员考虑如何创建布局,我试图给出相同的布局(可调整大小适用于所有存在的视图),现在采用相同的布局(portrait-horitzontal) )不起作用,也许将来可以不创建布局 - 土地。