Android 文章第一抄,下面的这些东西是转自Android Developer Help上面的。他们上面说的很详细。我这里就转载一下,特别提醒下自己。

Android Layout Attributes 的一些不容易理解的地方。

android:padding

Padding is defined as space between the edges of the view and the view's content. A views size will include it's padding. If a background is provided, the padding will initially be set to that (0 if the drawable does not have padding). Explicitly setting a padding value will override the corresponding padding found in the background.

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp ". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters).

控件内部控件边缘和内容的空白区

android:layout_margin

Specifies extra space on the left, top, right ,and bottom sides of this view. [dimension]

控件外部边缘和其他兄弟控件的空白区域,否则大部分情况下,会是直接相连的。

android:layout_alignLeft

Specifies extra space on the left side of this view. [dimension]

就是向着某个控件的左边对齐


android:layout_alignParentRight

If true, makes the left edge of this view match the left edge of the parent. [boolean]

就是向着父控的右边对齐


这些东西是用在布局文件里面,可以说他们提供的还是很全的参数。

更多相关文章

  1. 自定义控件attrs文件里的属性
  2. 一个Demo让你掌握所有的android控件
  3. 系出名门Android(8) - 控件(View)之TextSwitcher, Gallery, Imag
  4. Android学习笔记(9)---FrameLayout中上下层可点击设置
  5. android - mars课程列表
  6. Android(安卓)ViewHolder
  7. Android弹出式提示框 PopupWindow
  8. Android又一个超漂亮的日历控件
  9. Android(安卓)通用标题栏之组合控件

随机推荐

  1. android 网络判断的几种方法
  2. android >ToggleButton(开启/关闭) 控件
  3. Android中内容观察者的使用---- ContentO
  4. kernel 及 ramdisk 移植
  5. android sdcard文件存储 + 媒体库更新方
  6. android 图表引擎AChartEngine(柱状图)
  7. Android(安卓)显示大图片
  8. Android(安卓)SDcard目录文件操作
  9. 【Android】使用ConnectivityManager与Ne
  10. Android动态设置控件高度