내용

글번호 41
작성자 heojk
작성일 2016-04-29 00:00:00
제목 안드로이드 이벤트처리 소스코드
내용 activiti_event.xml 파일 내용 ------------------------------------------------------------------------------------- <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center_horizontal" > <TextView android:id="@+id/fruit" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#ffff00" android:textSize="20dp" android:text="과일" /> <LinearLayout android:layout_width="wrap_content" android:layout_height="match_parent" > <Button android:id="@+id/apple" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Apple" /> <Button android:id="@+id/orange" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Orange" /> </LinearLayout> </LinearLayout> EventActivity.java파일 내용 ------------------------------------------------------------------------------------- public class EventActivity extends Activity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_event); Button btnApple=(Button)findViewById(R.id.apple); btnApple.setOnClickListener(new Button.OnClickListener() { public void onClick(View v) { TextView textFruit=(TextView)findViewById(R.id.fruit); textFruit.setText("Apple"); } }); findViewById(R.id.orange).setOnClickListener(mClickListener); } Button.OnClickListener mClickListener = new View.OnClickListener() { public void onClick(View v) { TextView textFruit=(TextView)findViewById(R.id.fruit); textFruit.setText("Orange"); } }; }
첨부파일
android_event.png (14,896byte)