Android的编程 – 帖子 2: 的TextView, 的EditText, 钮

大家好, 之前,我们已经创建了第一个申请之日起, 你好世界投资回报率. 今天,我们开始学习一些基本的界面元素在Android是TextView中, 弗吉尼亚州的EditText按钮.

[qads]

要开始,然后创建一个新项目 (在所有的 1 您好世界上没有) 和打开XML文件 (activity_main.xml) 如下.

TextView中,机器人
这里, 默认打开的标签 设计 对我们来说是预览选项卡界面,可以拖放,但我不想让你学习如何拖放, 因为它是非常难以控制的接口. 所以,你去标签 文本.
TextView中,Android的代码
你可以看到预览画面 (4), 如果没有,请点击 预习 (2) 将其打开. 我们的界面代码 (3). 代码的地方,我们会跟踪更改它.
在屏幕, 你会看到这样的TextView代码.

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!" />

这个段是显示一个线路 “你好世界” 手机屏幕. 你看行 机器人:文=”你好世界!”, 本身, 你可以改变它的文字你的名字, 你爱人的名字,… 和运行应用程序会发现文字被改变.
这样的TextView是帮助我们在屏幕上显示文本的一种成分. 你还记得文本 – 字, 视图 – 节目.

已经. 跟随, 你用下面的代码替换整个代码的文件,看看我们的界面.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.nguyenvanquan7826.tut2texteditbutton.MainActivity">

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!" />

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="Enter text here" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Click me" />

</LinearLayout>

该接口将如下:
文本编辑按钮
在上面的代码, 我们编辑了一下,更 2 通行 的EditText.

  • EditText上是一个组件,它允许我们将数据输入到.
  • 按钮是一个组件,它可以让我们点击操纵处理事情. 为了处理需要添加里面的Java代码.

现在,你只要运行该应用程序,看它.

  • 增加了他, 它不是要全 3 组件的TextView, 的EditText, 钮. 在接下来的文章中, 我们将学习和有关于他们的更多的知识.
  • 还有一件事, 我们用编写界面的语言XML. XML中的每个组件开始开卡 (VD的开卡的TextView <的TextView> ) ,以结束结束或开始标记内关闭 (VD的TextView在开早关/>, 的LinearLayout的闭幕 </的LinearLayout>). 接口代码,这部分你会慢慢了解更多.
  • 我太专注于接口代码本系列, 因为根据她的节目, 良好的界面代码,新的Andr​​oid学得好, 学校代码,Android的界面非常不好不好.

今天,所有在这里暂停! 祝你有效地学习. 如果您有问题, 有关的文章建议或意见, 请退出离线后下方的消息!