标签:android style http io ar strong sp on c
LinearLaout 标签是 一种接口组件的编排方式
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android;layout_width="fill_parent"
android;layout_height="fill_parent"
>
</LinearLayout>
android:orientation="方式"
这个方式有两种:"vertical" 垂直 方式 顾名思义就是依照线性次序由上往下逐一排列接口组件
"horizontal" 水平方式 参照垂直方式 也就是自左而右依次排列
我们可以把LinearLayout想象成一个容器
这个容器里面可以是我们放的一些其他接口组件
当然,也可以在这个容器里面再放一个容器 就像在一个大瓶子里面又放了一个小瓶子 这个事完全允许的。
具体的该怎么应用 这要视我们开发过程中的需要去设定
我们在修改Linearlayout的过程中 只需要注意布局的安排合理性就行了
它的修改不涉及到程序 所以 只在main中修改就行了
标签:android style http io ar strong sp on c
原文地址:http://blog.csdn.net/farley119/article/details/39548763