常见布局的实现
Tip:
如果想要一个控件对齐底部:
1. 使用RelativeLayout
2. 使用 LinearLayout ,然后使用 weight 属性(只有在 LinearLayout 才有 weight 这个属性)
在 RelativeLayout 中如果你想要一个控件对齐中央 设置 android:layout_centerVertical="true" 如果 和左边 距离 使用这个参数 android:layout_marginLeft = "20dp"
当 每英寸为160 个像素点的时候,1dp = 1px; 但 每英寸为240 个像素点的时候,1dp = 1.5px; 设置一条小灰线
<View style="@style/divider"/>
style 放置位置/res/values/styles.xml
<style name="divider">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">0.5dip</item>
<item name="android:background">@color/divider_gray</item>
</style>