首页 > 代码库 > android 从零单排 第一期 按键显示helloworld
android 从零单排 第一期 按键显示helloworld
啦啦啦~ 我是qscqesze 今天开始android的从零单排啦啦啦~
首先从最简单的开始
要求:
程序运行后,单击屏幕上的按键后可以显示一句话,如“Hello World!”
这是一个最基础最基础的东东啦,我就不怎么废话了
代码如下:
//java文件package com.example.helloworld;import android.os.Bundle;import android.app.Activity;import android.view.Menu;import android.view.TextureView;import android.view.View;import android.view.View.OnClickListener;import android.widget.TextView;public class MainActivity<Button> extends Activity { Button b; TextView t; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); b=(Button) this.findViewById(R.id.button1); t=(TextView) this.findViewById(R.id.textView1); ((View) b).setOnClickListener(new OnClickListener(){ public void onClick(View v){ t.setText("Hello World"); } }); }}
xml:
<RelativeLayout 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: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=".MainActivity" > <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="" /> <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/textView1" android:layout_centerHorizontal="true" android:layout_marginTop="134dp" android:text="来点我" /></RelativeLayout>
源码文件以及裁图:http://pan.baidu.com/s/1nt7fIu1
android 从零单排 第一期 按键显示helloworld
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。