安卓中主要的布局方法分类:
- LinearLayout(沿着一条线(横着/竖着)分布)
- RelativeLayout(相对布局)
- ListView(列表布局)
- GridView(网格布局)
示例:
在项目项目下的res->layout右击new->Android Xml file
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"
android:layout_margin="32dp"
android:text="LinearLayout demo"
android:textSize="40sp"
android:background="#ffefd5"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"
android:text="TextView"
android:textSize="40sp"
android:background="#e0ffff"
/>
</LinearLayout>
- 在
<LinearLayout
底下的android:orientation="vertical"
表示的是控件竖着排列,vertical改成horizontal表示水平排列; - 在xml代码中
android:layout_width="match_parent"
表示的是宽度填充父控件; -
android:layout_height="wrap_content"
、表示的是高度包含内容。 -
android:padding="16dp"
设置内边距 android:layout_margin=”32dp”` 设置外边距; -
android:textSize="40sp"
字体大小用单位sp,其它的用单位dp。查看效果:
对于MarkDown的首次使用感觉还是不错的。。表示会继续使用。。