android gravity属性 和 weight属性

来看这个布局文件 

复制代码
 1 <?xml version="1.0" encoding="utf-8"?>  
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
 3     android:orientation="vertical"  
 4     android:layout_width="fill_parent"  
 5     android:layout_height="fill_parent"  
 6     >  
 7 <EditText  
 8     android:layout_width="fill_parent"  
 9     android:layout_height="wrap_content"  
10     android:text="one"/>  
11 <EditText  
12     android:layout_width="fill_parent"  
13     android:layout_height="wrap_content"  
14     android:text="two"/>  
15     <EditText  
16     android:layout_width="fill_parent"  
17     android:layout_height="wrap_content"  
18     android:text="three"/>  
19 </LinearLayout>  
复制代码

这是一个很正常的布局文件了,效果如下。 

 

当我们给这三个EditText设置上gravity属性之后效果如下,先看 xml文件。 

复制代码
 1 <?xml version="1.0" encoding="utf-8"?>  
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
 3     android:orientation="vertical"  
 4     android:layout_width="fill_parent"  
 5     android:layout_height="fill_parent"  
 6     >  
 7 <EditText  
 8     android:layout_width="fill_parent"  
 9     android:layout_height="wrap_content"  
10     android:gravity="left"  
11     android:text="one"/>  
12 <EditText  
13     android:layout_width="fill_parent"  
14     android:layout_height="wrap_content"  
15     android:gravity="center"  
16     android:text="two"/>  
17     <EditText  
18     android:layout_width="fill_parent"  
19     android:layout_height="wrap_content"  
20     android:gravity="right"  
21     android:text="three"/>  
22 </LinearLayout>  
复制代码

 

由此可以看出gravity属性是用来控制 EditText里边文本的位置。 

   我们现在对xml文件做如下修改 

复制代码
 1 <?xml version="1.0" encoding="utf-8"?>  
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
 3     android:orientation="vertical"  
 4     android:layout_width="fill_parent"  
 5     android:layout_height="fill_parent"  
 6     >  
 7 <EditText  
 8     android:layout_width="fill_parent"  
 9     android:layout_height="wrap_content"  
10     android:gravity="left"  
11     android:text="one"/>  
12 <EditText  
13     android:layout_width="fill_parent"  
14     android:layout_height="wrap_content"  
15     android:gravity="center"  
16     android:layout_weight="1.0"  
17     android:text="two"/>  
18     <EditText  
19     android:layout_width="fill_parent"  
20     android:layout_height="wrap_content"  
21     android:gravity="right"  
22     android:text="three"/>  
23 </LinearLayout> 
复制代码

  运行效果如下 

 

  感觉上这个android:layout_weight="1.0"是用来设置控件的大小,因为经过我们的设置中间的那个EditText变大了。其它两个EditText的 android:layout_weight属性我们没有设置,没有设置就会使用默认值, 默认值为 0.0。 设置为1.0的那个控件会填充剩余空白的部分。 
我们如果想要3个组件均等地共享空间,应该将他们的weight属性都设置为 1.0,这样将均匀的扩展每一个EditText。 
    
 

posted @   鸭子船长  阅读(1480)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· DeepSeek 开源周回顾「GitHub 热点速览」
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
点击右上角即可分享
微信分享提示