Android 프로 그래 밍 기반 의 간단 한 Button 이벤트 응답 종합 알림 컨트롤 Toast 응용 예시

2996 단어 AndroidButtonToast
이 사례 는 Android 간단 한 Button 이벤트 응답 종합 알림 컨트롤 Toast 응용 을 설명 합 니 다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
앞에서 main.xml 에서 Button 대상 을 정 의 했 습 니 다.여기 서 Button 이 이벤트 응답 을 어떻게 실현 하 는 지 배 웁 니 다.
Button 단추 가 촉발 하 는 이벤트 처 리 를 Event Handle 이 라 고 합 니 다.안 드 로 이 드 에서 단추 이 벤트 는 시스템 의 Button.OnClickListener 가 제어 합 니 다.자바 프로 그래 밍 을 잘 아 는 독자 들 은 OnXxListener 에 대해 낯 설 지 않 을 것 입 니 다.아래 의 Demo 는 Button 을 클릭 하면 TextView 문자 가 바 뀌 고 화면 에 Toast 알림 이 나타 납 니 다.
효과 도 를 보 여 주세요.
버튼 을 누 르 기 전:

버튼 클릭 후:

우 리 는 주로 프로그램 에서 두 곳 을 바 꾸 었 는데 하 나 는 main.xml 이 고 다른 하 나 는 Button Demo.자바 입 니 다.
Main.xml 코드 는 다음 과 같 습 니 다.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" //1.5      LinearLayout  
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  >
<TextView
  android:id="@+id/textview1" //  Id  Java    ,     
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:text="@string/hello"
  />
<Button
  android:id="@+id/button1"
  android:layout_width="60px"
  android:layout_height="wrap_content"
  android:layout_gravity="right" // Button    
  android:text="  "
/>
</LinearLayout>

Button.java 코드 는 다음 과 같 습 니 다.

package com.android.test;
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 ButtonDemo extends Activity {
  private TextView textview1;
  private Button button1;
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    //  ID      main.xml  TextView Button  
    textview1 = (TextView)findViewById(R.id.textview1);
    button1 = (Button)findViewById(R.id.button1);
    //      
    button1.setOnClickListener(new Button.OnClickListener(){
      public void onClick(View v)
      {
        //Toast    
        Toast.makeText(ButtonDemo.this,
            "TextView         ,      ?",
            Toast.LENGTH_LONG).show();
        // TextView       
        textview1.setText("          !");
      }
    });
  }
}

오늘 은 여기까지.
더 많은 안 드 로 이 드 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.
본 고 에서 말 한 것 이 여러분 의 안 드 로 이 드 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기