代码+图示:
1">
170dp"
android:layout_height="270dp"
android:background="#eefaf5da"
android:padding="10dp"
android:scrollbarStyle="insideOverlay"
android:layout_marginBottom="150dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true">
!!!!!! 吃早餐!!!!!! 吃水果!!!!!! 学英语!!!!!! 学习!!!!!! 健身!!!!!! 唱K!!!!!! 逛街!!!!!! 吃早餐!!!!!! 吃水果!!!!!! 学英语!!!!!! 学习!!!!!! 健身!!!!!! 唱K!!!!!! 逛街!!!!!!"
android:textColor="#e6790d"/>
属性值
* vertical 竖直
* horizontal 水平
* none 隐藏
TextView的高度设置为500dp,其大小没有超过父布局,不会显示滚动条。
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
android:fadingEdge="vertical">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="150dp"
android:layout_height="500dp"
android:background="#eedceb0a"
android:gravity="center"
android:text="android:text="我的高度是500dp,没有超过父布局,不显示滚动条"/>
LinearLayout>
ScrollView>
TextView的高度设置为900dp,其大小超过了父布局。
"1.0" encoding="utf-8"?>
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
android:fadingEdge="vertical">
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_width="150dp"
android:layout_height="900dp"
android:background="#eedceb0a"
android:gravity="center"
android:text="我的高度是900dp,超过了父布局,显示滚动条"/>
"1.0" encoding="utf-8"?>
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
android:layout_width="10dp"
android:layout_height="100dp"
android:layout_marginTop="20dp"
android:background="#f3f5a4"
android:text="我在马路边捡到一分钱,把它交到警察叔叔手里边,叔叔拿着钱对我把头点,我高兴的说了声叔叔再见!!!!!!!!!!!!!!"/>
(属性里面必须是图片,不能直接设置颜色值。)
* android:scrollbarThumbHorizontal=”@drawable/red”
* android:scrollbarThumbVertical=”“
水平滚动条:
android:scrollbarThumbHorizontal="@drawable/scrollbar_indicator"
android:scrollbarTrackHorizontal="@drawable/scrollbar_bg"
竖直滚动条:
android:scrollbarThumbVertical="@drawable/scrollbar_indicator"
android:scrollbarTrackVertical="@drawable/scrollbar_bg"
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:scrollbars="horizontal">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textView4"
android:layout_width="450dp"
android:layout_height="wrap_content"
android:background="#e5b9f602"
android:maxLines="1"
android:text="我的宽度是450dp,超过了父布局,为什么不能横着滚动????????????????????????????"/>
LinearLayout>
ScrollView>
直接报错:Missing classes
<VerticalScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_width="10dp"
android:layout_height="100dp"
android:layout_marginTop="20dp"
android:background="#f3f5a4"
android:text="我在马路边捡到一分钱,把它交到警察叔叔手里边,叔叔拿着钱对我把头点,我高兴的说了声叔叔再见!!!!!!!!!!!!!!"/>
VerticalScrollView>
ScrollView只能有一个直接的子控件。但是可以在这个直接子控件(子布局)里面添加多个控件。