LinearLayout界面放置过多控件,导致下方控件不可见的解决方法:

小编在进行项目的代码编写时,发现了该问题。最简单的方法便是使用滚动条,通过滑动,实现对下方控件的操作。

通过对相对应的布局xml文件进行操作,在最外层的LinearLayout布局外添加ScrollView。

代码实现:

    
<ScrollView    
    xmlns:android="http://schemas.android.com/apk/res/android"    
    android:layout_width="fill_parent"    
    android:layout_height="fill_parent"    
    android:scrollbars="vertical"    
    android:fadingEdge="vertical">    
    <LinearLayout    
        android:layout_width="fill_parent"    
        android:layout_height="fill_parent"    
        android:orientation="vertical"    
        >    
    LinearLayout>    
ScrollView>   

说明:ScrollView是为控件或者布局添加滚动条。
拓展知识点说明:

ScrollView

始终显示srcollView的滚动条
android:scrollbars=”vertical”
android:fadeScrollbars=”false”

要两个参数都设置才能成功

你可能感兴趣的:(Android)