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(" !");
}
});
}
}
오늘 은 여기까지.더 많은 안 드 로 이 드 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.
본 고 에서 말 한 것 이 여러분 의 안 드 로 이 드 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.