ApiDemos 中摘记的部分控件效果图
ApiDemos 中摘录的部分控件效果图
1.checkbox星形样式:
<CheckBox android:id="@+id/star" style="?android:attr/starStyle" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="收藏" />
2.RadioButton 单选(RadioGroup)
<RadioGroup android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <RadioButton android:id="@+id/radio1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="radiobutton_1" /> <RadioButton android:id="@+id/radio2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="radiobutton_2" /> </RadioGroup>
3. ToggleButton :
<ToggleButton android:id="@+id/toggle1" android:layout_width="wrap_content" android:layout_height="wrap_content" />
4. <TextView
android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dip" android:text="@string/textColorPrimary" android:textAppearance="?android:attr/textAppearanceLarge" android:focusable="true" /> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dip" android:text="@string/textColorSecondary" android:textAppearance="?android:attr/textAppearanceLarge" android:textColor="?android:attr/textColorSecondary" android:focusable="true" /> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dip" android:text="@string/textColorTertiary" android:textAppearance="?android:attr/textAppearanceLarge" android:textColor="?android:attr/textColorTertiary" android:focusable="true" />
margin边沿:是与父容器之间的距离。
padding填充:是与子容器自检的距离。
效果图: