ScrollView下面固定一个控件

本文通过两个实例对比展示了在Android应用开发中,如何合理使用ScrollView与Button的布局方式来达到不同的视觉效果。重点在于调整ScrollView和Button的位置关系及层级顺序。
1.jpg 

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     android:layout_width="match_parent"
  4.     android:layout_height="match_parent" >

  5.     <ScrollView
  6.         android:id="@+id/scrollView1"
  7.         android:layout_width="wrap_content"
  8.         android:layout_height="wrap_content"
  9.         android:layout_alignParentLeft="true"
  10.         android:layout_alignParentTop="true" >

  11.         <TextView
  12.             android:layout_width="wrap_content"
  13.             android:layout_height="wrap_content"
  14.             android:text="作者-敬水仙:新华社记者在叙空军情报局分局看到~~~" />
  15.     </ScrollView>

  16.     <Button
  17.         android:id="@+id/button1"
  18.         android:layout_width="wrap_content"
  19.         android:layout_height="wrap_content"
  20.         android:layout_alignParentBottom="true"
  21.         android:layout_alignParentLeft="true"
  22.         android:text="Button" />

  23. </RelativeLayout>
复制代码


效果二
2.jpg 

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     android:layout_width="match_parent"
  4.     android:layout_height="match_parent" >

  5.      <Button
  6.         android:id="@+id/button1"
  7.         android:layout_width="wrap_content"
  8.         android:layout_height="wrap_content"
  9.         android:layout_alignParentBottom="true"
  10.         android:layout_alignParentLeft="true"
  11.         android:text="Button" />
  12.     
  13.     <ScrollView
  14.         android:id="@+id/scrollView1"
  15.         android:layout_width="wrap_content"
  16.         android:layout_height="wrap_content"
  17.         android:layout_alignParentLeft="true"
  18.         android:layout_alignParentTop="true"
  19.         android:layout_above="@id/button1" >

  20.         <TextView
  21.             android:layout_width="wrap_content"
  22.             android:layout_height="wrap_content"
  23.             android:text="作者-敬水仙:新华社记者在叙空军情报局分局看到~~~~~~~" />
  24.     </ScrollView>

  25.    

  26. </RelativeLayout>
复制代码
不同点是: android:layout_above="@id/button1"   和 ScrollView 和 Button的先后顺序
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值