您的位置:首页 > 其它

控件

2015-07-30 16:08 218 查看
版权声明:本文为博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。 本文链接:https://blog.csdn.net/C__CHM/article/details/47151565

控件:

    <TextView
        android:id="@+id/text_view"      
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="This ia TextView" />

这直接在屏幕上显示This is TextView

<EditText
        android:id="@+id/edit_text1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="Type something here"
        />

与用户交互,可以输入内容,默认Type something here

<Button
           android:id="@+id/button"
           android:layout_width="match_parent"
           android:layout_height="wrap_content"
           android:text="注册"
           />



内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: