Android教程(五)-- Button控制項配合Toast控制項的使用

來源:互聯網
上載者:User

又到了有閒置時間,趁機寫一章教程先。

在本章教程中,我們將會學習Button控制項的使用,同時順便說一下Toast提示控制項。

在Android程式開發中,我們使用最多的使用者互動控制項可能就是Button的了,而我們使用最多的事件估計也就是onclick事件了。

這些事件也是最簡單的事件,我們一般通過google內建的API介面就可以調用了,我們具體看看怎麼做吧。

第一步。建立一個工程Ep.Toast,活動和主視圖名稱我都使用預設的了,設定一下視圖activity_main.xml:


[java] 
<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="@string/hello_world" /> 
 
    <Button 
        android:id="@+id/button1" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:layout_alignParentRight="true" 
        android:layout_alignTop="@+id/textView1" 
        android:layout_marginRight="61dp" 
        android:text="確定" /> 
 
</RelativeLayout> 

<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="@string/hello_world" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignTop="@+id/textView1"
        android:layout_marginRight="61dp"
        android:text="確定" />

</RelativeLayout>
裡面就是一個文字標籤和一個按鈕控制項。

第二步。我們寫核心檔案——MainActivity.java,在這裡我會盡量多給你們注釋:


[java] 
package com.example.ep.toast; 
 
import android.os.Bundle; 
import android.app.Activity; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.Button; 
import android.widget.TextView; 
import android.widget.Toast; 
 
public class MainActivity extends Activity { 
 
    private TextView txtview1; 
    private Button btn1; 
 
    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.activity_main); 
        //綁定文字標籤控制項  
        txtview1=(TextView)findViewById(R.id.textView1); 
        //綁定按鈕控制項  
        btn1=(Button)findViewById(R.id.button1); 
        //添加一個點擊事件監聽器並執行個體化一個點擊事件的監聽  
        btn1.setOnClickListener(new OnClickListener() { 
             
            @Override 
            public void onClick(View v) { 
                //點擊按鈕後設定文字標籤  
                txtview1.setText("Joven"); 
                //點擊按鈕後彈出提示框,裡面的參數是(綁定活動,提示內容,顯示時間)  
                Toast.makeText(MainActivity.this, "Joven", Toast.LENGTH_LONG).show(); 
            } 
        }); 
    } 
 

package com.example.ep.toast;

import android.os.Bundle;
import android.app.Activity;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends Activity {

 private TextView txtview1;
 private Button btn1;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  //綁定文字標籤控制項
  txtview1=(TextView)findViewById(R.id.textView1);
  //綁定按鈕控制項
  btn1=(Button)findViewById(R.id.button1);
  //添加一個點擊事件監聽器並執行個體化一個點擊事件的監聽
  btn1.setOnClickListener(new OnClickListener() {
   
   @Override
   public void onClick(View v) {
    //點擊按鈕後設定文字標籤
    txtview1.setText("Joven");
    //點擊按鈕後彈出提示框,裡面的參數是(綁定活動,提示內容,顯示時間)
    Toast.makeText(MainActivity.this, "Joven", Toast.LENGTH_LONG).show();
   }
  });
 }

}

最後我們來看看效果吧。

 好了本章就講到這裡了,這些雖然都是些基礎得不能再基礎得東西。但是不管多麼龐大而複雜的項目,其實都是在這些東西上面建立起來的。知識都是積累才會變精華。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.