Android 学习笔记(一): 基本控件
[html]<pre name="code" class="html"><?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">"
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"/>
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<EditText android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<RadioButton android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton" />
<CheckBox android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CheckBox" />
<ToggleButton android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ToggleButton" />
<ZoomButton android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ZoomButton" />
<Spinner android:layout_width="match_parent"
android:layout_height="wrap_content" />
<RatingBar android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
摘自 柒尐狐的专栏
补充:移动开发 , Android ,