搜课云网 > 深圳达内IT教育 > 资讯总汇 > android代码编写

android代码编写

机构:深圳达内IT教育 时间:2016-05-28 09:08:38 点击:672

  res/layout/main.xml App主窗体布局文件,你的应用长什么样都在这边定义,有Design和Text两种模式

  res/values/strings.xml 可以理解为i18n文件,这个文件用来存放程序调用的各种字符串

  src/com/example/helloandroid/MyActivity.java 这个就是我们的主程序类,等下要实现的功能都在这个文件里添加

  首先为应用添加一个id为hellotextView的textview和一个id为hellobutton的button,mail.xml 代码如下:

  代码如下:

  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

  android:orientation="vertical"

  android:layout_width="fill_parent"

  android:layout_height="fill_parent"

  >

  <TextView

  android:layout_width="fill_parent"

  android:layout_height="180dp"

  android:text="@string/default_message"

  android:id="@+id/hellotextView" android:textColor="#00ff00" android:gravity="center"/>

  <Button

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="@string/button_send"

  android:id="@+id/hellobutton" android:layout_gravity="center"/>

  代码和控件用到的字符串定义如下:

  代码如下:

  helloandroid by hiwanz

  Say something

  Click button below!

  You just clicked on the Button!

  主程序中定义button点击后改变textview显示的文本,并且弹出Toast提示信息,代码如下:

  代码如下:

  package com.example.helloandroid;

  import android.app.Activity;

  import android.os.Bundle;

  import android.view.View;

  import android.widget.Button;

  import android.widget.TextView;

  import android.widget.Toast;

  public class MyActivity extends Activity {

  /**

  * Called when the activity is first created.

  */

  @Override

  public void onCreate(Bundle savedInstanceState) {

  super.onCreate(savedInstanceState);

  setContentView(R.layout.main);

  //得到按钮实例

  Button hellobtn = (Button)findViewById(R.id.hellobutton);

  //设置监听按钮点击事件

  hellobtn.setOnClickListener(new View.OnClickListener() {

  @Override

  public void onClick(View v) {

  //得到textview实例

  TextView hellotv = (TextView)findViewById(R.id.hellotextView);

  //弹出Toast提示按钮被点击了

  Toast.makeText(MyActivity.this,"Clicked",Toast.LENGTH_SHORT).show();

  //读取strings.xml定义的interact_message信息并写到textview上

  hellotv.setText(R.string.interact_message);

  }

  });

  }

  }

  代码写好后,电脑通过USB数据线连接手机,手机系统设置里的开发人员选项里打开USB调试,在IDE中直接点Run就可以在手机上看到运行的效果了。

  想要了解更多资讯,请访问深圳android培训机构

师资介绍
免费试听

免费体验课开班倒计时

11: 59: 59

稍后会有专业老师给您回电,请保持电话畅通

咨询电话:15893081958
陈老师 QQ:3429316823