Activity布局:LinearLayout、TableLayout

     android:orientation="horizontal"  水平布局

     android:orientation="vertical"      垂直布局

     android:id  —— 为控件指定相应的ID
     android:text —— 指定控件当中显示的文字,需要注意的是,这里尽量使用strings.xml文件当中的字符串
     android:grivity —— 指定控件的基本位置,比如说居中,居右等位置
     android:textSize —— 指定控件当中字体的大小
     android:background —— 指定该控件所使用的背景色,RGB命名法
     android:width —— 指定控件的宽度
     android:height —— 指定控件的高度
     android:padding* —— 指定控件的内边距,也就是说控件当中的内容
     android:sigleLine —— 如果设置为真的话,则将控件的内容在同一行当中进行显示

     layout_weight 的用法比较复杂,继续学习。

相关文章: