Android 개발 의 클릭 가능 한 Button 생 성 방법
앞으로 의 업무 수 요 를 위해 서 든 현재 의 회사 프로젝트 를 위해 서 든 휴대 전화 개발 에 관 한 지식 을 배 울 필요 가 있다 는 것 을 느 꼈 다.
물론 어떤 새로운 것 의 시작 도 첫 번 째 Hello World 와 수반 되 고 안 드 로 이 드 학습 도 예외 가 아니다.이제 시작 인 이상 나 는 너무 많은 묘 사 를 하지 않 겠 다.
안 드 로 이 드 가 개발 한 IDE:ADT 에 있어 서 열 린 첫 번 째 눈 은 약간 혼 란 스 러 웠 지만 인터넷 의 각종 디 렉 터 리 구조 에 대한 소 개 를 보고 천천히 알 게 되 었 습 니 다.이 인 스 턴 스 를 하면 우 리 는 특히 두 곳 에 관심 을 가 져 야 합 니 다.하 나 는 src 디 렉 터 리 이 고 하 나 는 res 디 렉 터 리 의 layot 디 렉 터 리 입 니 다.src 디 렉 터 리 는 code-behind 소스 코드 를 설치 하고 layot 디 렉 터 리 는 xml 프론트 데스크 톱 설정 파일 을 배치 합 니 다.
우리 가 실현 하고 자 하 는 기능 은 단 추 를 누 르 고 EditText 에'Hello World!'를 표시 하 는 것 입 니 다.먼저 layot 파일 을 열 고 버튼 을 끌 어 다 놓 은 다음 EditText 를 끌 어 다 놓 습 니 다.마지막 xml 파일 구 조 는 다음 과 같 습 니 다.
<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" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:text="Button" />
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/button1"
android:layout_alignBottom="@+id/button1"
android:layout_toRightOf="@+id/button1"
android:text="EditText" />
</RelativeLayout>
그리고 배경 코드 파일 에서 두 개의 네 임 스페이스 를 도입 해 야 합 니 다.
import android.widget.Button;
import android.widget.EditText;
모든 코드 는 다음 과 같 습 니 다:
package com.example.helloworld;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
public class MainActivity extends Activity {
private Button myButton;
private EditText myText;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
myButton = (Button)findViewById(R.id.button1);
myText = (EditText)findViewById(R.id.editText1);
myButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
myText.setText("Hello World!");
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
그리고 실행 단 추 를 누 르 고 가상 컴퓨터 인터페이스 에서 단 추 를 누 르 면 다음 과 같은 결 과 를 얻 을 수 있 습 니 다.이 절 은 여기까지 입 니 다.나중에 우 리 는 계속 비밀 을 탐지 할 것 입 니 다.
더 많은 안 드 로 이 드 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.,,,,,,,
본 고 에서 말 한 것 이 여러분 의 안 드 로 이 드 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.