分享

android中关于scrollview内部组件android:layout

 herozhou1314 2012-05-23


android中关于scrollview内部组件android:layout_height="fill_parent"无效的解决办法

890人阅读 评论(5) 收藏 举报

今天在调整布局时遇到一个奇怪的问题,在scrollview下加入的组件无论如何也不能自动扩展到屏幕高度,最后对布局文件进行简化,最终得到最简layout配置内容如下:

·········10········20········30········40········50········60········70········80········90········100·······110·······120·······130·······140·······150
  1. <?xml version="1.0" encoding="utf-8"?>  
  2.   
  3. <!-- 背景:蓝色 -->  
  4. <ScrollView android:layout_width="fill_parent"  android:id="@+id/scrollView1"  
  5.       xmlns:android="http://schemas./apk/res/android"  
  6.       android:layout_height="fill_parent" android:background="@color/solid_blue">  
  7.   
  8.     <!-- 背景:黄色 -->  
  9.     <LinearLayout android:id="@+id/linearLayout1" android:layout_width="fill_parent"   
  10.        android:layout_height="fill_parent" android:background="@color/solid_yellow">  
  11.   
  12.         <TextView android:text="TextView" android:id="@+id/textView1"    
  13.            android:layout_width="wrap_content" android:layout_height="fill_parent"    
  14.            android:layout_weight="1">  
  15.         </TextView>  
  16.   
  17.     </LinearLayout>  
  18. </ScrollView>  

 

虽然我的所有组件都设置了android:layout_height="fill_parent",但是结果依然不能扩展到全屏高度,为了看到组件实际大小,我设置了布局组件的背景色,显示效果如下:

 很明显,scrollview(蓝色)已经扩展到最大高度了,但是其内部的linearlayout(黄色)却没有扩展.

 试了很多办法,就是没有办法让linearlaout组件扩大.

 最终,在一个国外的网站上,找到了答案,描述如下:

  

  ......

   Found the solution myself in the end. The problem was not with the LinearLayout,  but with the ScrollView (seems weird, considering the fact that the ScrollView was expanding, while the LinearLayout wasn't).

The solution was to use android:fillViewport="true" on the ScrollView.

 

原文链接:

http:///questions/2599837/linearlayout-not-expanding-inside-a-scrollview

转自http://blog.csdn.net/linqingf/article/details/6573602

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约