`
sharp2wing
  • 浏览: 274239 次
  • 性别: Icon_minigender_1
  • 来自: 南京
文章分类
社区版块
存档分类
最新评论

用LinearLayout和RelativeLayout分别实现两端对齐

阅读更多
I.LinearLayout实现两端对齐

假设有这样的一个layout,要想Button01对齐在左边,Button02对齐在右边,可以如下设置:

LinearLayout有两个子元素Button01和Button02。Button01的 android:layout_gravity设为”left”,Button02的 android:layout_gravity设为”right”

    <?xml version=”1.0″ encoding=”utf-8″?>
    <LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”
    android:orientation=”vertical”
    android:layout_width=”fill_parent”
    android:layout_height=”fill_parent”>
    <Button android:layout_gravity=”left” android:text=”button01″ android:id=”@+id/Button01″ android:layout_width=”wrap_content” android:layout_height=”wrap_content”></Button>
    <Button android:layout_gravity=”right” android:text=”button02″ android:id=”@+id/Button02″ android:layout_width=”wrap_content” android:layout_height=”wrap_content”></Button>
    </LinearLayout>

这样设定后可以看到Button01居左,Button02居右。

注:几个xml属性
1,android:orientation
布局方向。horizontal是让所有的子元素按水平方向从左到右排列, vertical是让所有的子元素按竖直方向从上到下排列。
2,android:gravity 与 android:layout_gravity的区别
android:gravity是指定本元素的子元素相对它的对齐方式。
android:layout_gravity是指定本元素相对它的父元素的对齐方式。

II.RelativeLayout实现两端对齐
假设有这样的一个layout,要想TextView01对齐在左边,TextView02对齐在右边,可以如下设置:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/RelativeLayout01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<TextView
android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="左边"
>
</TextView>
<TextView
android:id="@+id/TextView02"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="右边"
>
</TextView>
</RelativeLayout>

这样设定后可以看到TextView01居左,TextView02居右。
分享到:
评论
4 楼 ufo22940268 2014-06-04  
我解决了

https://github.com/ufo22940268/android-justifiedtextview
3 楼 airshiplay 2013-05-20  
airshiplay 写道
linearLayout 请参考 http://airshiplay.iteye.com/admin/blogs/1855799



http://airshiplay.iteye.com/blog/1855799
2 楼 airshiplay 2013-04-27  
linearLayout 请参考 http://airshiplay.iteye.com/admin/blogs/1855799
1 楼 sunting_bcwl 2012-03-15  
用LinearLayout明显不行啊,两端是对齐了,但是上下不对齐呀,设成vertical布局的话完全不合需求撒

相关推荐

    Android UI组件LinearLayout线性布局详解

    - `android:gravity`: 设置子视图在布局内的对齐方式,可以是中心对齐、两端对齐等。 - `android:layout_gravity`: 设置布局本身在父容器内的对齐方式,与`android:gravity`类似。 - `android:background`: 设置...

    Flexbox for Android .zip

    - `justifyContent`:控制弹性项在主轴上的对齐方式,包括`flex-start`(默认,靠左或靠上)、`flex-end`(靠右或靠下)、`center`(居中)、`space-between`(两端对齐,平均分配空间)和`space-around`(每个元素...

    Android开发之流式布局(实现热门标签效果)

    1. 自定义布局时需处理子视图的对齐方式,比如是否居中对齐、两端对齐等。 2. 考虑到不同屏幕尺寸和分辨率,需要确保布局在各种设备上都能正常显示。 3. 要注意性能优化,避免在onMeasure和onLayout中进行耗时操作。...

    瀑布流Demo

    这种布局模仿了水流自然下落的状态,使得每一行的元素高度不一定相同,但每列的左右两端元素对齐,从而达到一种视觉上的平衡和动态效果。 在Android平台上,实现瀑布流布局有多种方法,如自定义ViewGroup、使用第三...

    Android登陆与注册

    总之,Android登录与注册页面的设计和实现涵盖了多个方面,包括界面布局、页面跳转、控件使用、网络通信、数据库管理和用户体验优化。开发者需要根据具体需求和最佳实践,综合运用这些技术,打造高效、安全、友好的...

    android 自定义view流式布局

    3. 布局对齐:根据需求,可以实现不同的对齐方式,比如居中对齐、两端对齐等。 4. 动态调整列数:在某些场景下,可能希望根据屏幕宽度动态调整每行的子视图数量。 通过以上步骤,我们就能实现一个基本的自定义流式...

    android布局

    根据提供的文件信息,我们可以了解到这份资料主要涵盖了两种常见的布局方式:`LinearLayout`(线性布局)和`RelativeLayout`(相对布局),这些都是Android开发中非常基础且实用的布局技巧。 #### 二、Android项目...

    Android-XML一般属性.docx编程资料

    - `EditText`派生的两个子类为`AutoCompleteTextView`和`MultiAutoCompleteTextView`,分别用于自动完成建议和多选自动完成建议。 **3. `ToggleButton` 和 `Switch`** - **`android:checked`**: 设置初始状态为...

Global site tag (gtag.js) - Google Analytics