灯火互联
管理员
管理员
  • 注册日期2011-07-27
  • 发帖数41778
  • QQ
  • 火币41290枚
  • 粉丝1086
  • 关注100
  • 终身成就奖
  • 最爱沙发
  • 忠实会员
  • 灌水天才奖
  • 贴图大师奖
  • 原创先锋奖
  • 特殊贡献奖
  • 宣传大使奖
  • 优秀斑竹奖
  • 社区明星
阅读:2212回复:0

Android 学习笔记(一): 基本控件

楼主#
更多 发布于:2012-09-06 13:50

[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>





摘自  柒尐狐的专栏

喜欢0 评分0
游客

返回顶部