`
bk_lin
  • 浏览: 321231 次
社区版块
存档分类
最新评论

Android 新手入门(2)-常用控件

阅读更多
<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> 

 
\">

2
1
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics