android 04.16

  在忙了两天的android学习过程中终于得到了一些自己觉得满意的收获。

  首先是建立了android project 然后做了一些button和toast任重道远仍需努力。

  在开始我先说一下需要做的步骤:

  首先你需要在res文件下的layout中建立一个属于你当前活动的布局(xml),码代码ing,之后在你的包文件下的java文件中加载你的你的布局,如果你想要做Toast那么看接下来的代码就OK了,下面的代码是手打复习版本的,可能会出现错误,请见谅。  

  首先,开始是做Button。

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:layout_width="wrap_content"
 4     android:layout_height="wrap_content"
 5     android:orientation="vertical" >
 6 
 7     <Button
 8         android:id = "@+id/button"
 9         adnroid:layout_width="match_parent"
10         android:layout_height="match_parent"
11         android:text="Button"  //button上显示的文字
12         android:textSize="20px"  //控制文字大小 
13         />    
14 
15 </LinearLayout>

制作完Button之后应该将你的Button加载到你的布局中并且做一个Toast出现;

看到这长长的包名,我表示被玩了好久才全部找出来

package com.example.***; //***是你的项目名字

import android.app.Activity;
import android.os.Bundle;
import adnroid.widget.Button;
import android.widget.Toast;
import android.view.Window;
import android.view.View.onClickListener;
import android.view.View;

public class MyActivity extends Activity{
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
      super.onCreate(savedInstanceState);
      //requestWindowFeature(Window.FEATURE_NO_TITLE);   //表示把FEATURE拼错了好多遍,查了好久的错误,作用是去除标题栏
      setContentView(R.layout.firstlayout);
     Button toast = (Button) findViewById(R.id.button);
     toast.setOnClickListener(new OnClickListener() {          //这边需要加载一个android.view.View.OnClickListener的包,
    @Override
    public void onCreat(View v){                               //View需要android.view.View 包才能够使用
    Toast.makeText(MyActivity.this,"Toast",Toast.LENGTH_SHORT).show();     //
}
});
} 

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。