android中系统属性的使用
?
1. ?android中默认的title高度: 25dip
? ? ??android:layout_height="?android:attr/windowTitleSize"
?
2. android中默认的title的样式
? ? ? ? ? style="?android:attr/windowTitleStyle"
?
3. android中透明色,系统自带
? ??android:drawable="@android:color/transparent"?
?
4.android中系统自带的进度条style
?
? ? ? ? style="?android:attr/progressBarStyleSmall" ? ?带小圆圈
?
5.空布局之细线条? ? ???<View? ? ? ? ? ? ? ? android:layout_width="match_parent"? ? ? ? ? ? ? ? android:layout_height="1dip"? ? ? ? ? ? ? ? android:background="@android:drawable/divider_horizontal_dark"? ? ? ? ? ? />??