Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- TinyMCE
- #청주주님의교회
- 자바
- 웹개발
- 주님의교회
- Resources
- Android
- 글쓰기
- Java
- Selector
- 인텐트
- 프로그래밍
- 아이콘
- 게시판
- Spring
- 회원가입
- 청주
- CSS
- 영성
- 안드로이드
- 생명주기
- jQuery
- 안드로이드 AVD
- java 8
- 에디터
- 제이쿼리
- Activity
- androidstudio
- JavaScript
- Intent
Archives
- Today
- Total
공부하는 블로그
(안드로이드 프로그래밍) 회원가입 Form 만들기 본문
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Regist"
android:textAllCaps="false"/>
버튼을 만들 때는 항상 주의하자.
ID가 있다면 덮어쓰고 없다면 만들어라
et(EditText)_id
정의하기 btn_regedit; 수정하기
casting이 필요하다. Alt + Enter
눌렀을 때 값을 가져오는 코드
android.app. -- 허니콤 이전의 API
android.support.v4.app --- 허니콤 하위호환 API
android.support.v7.app --- 롤리팝 하위호환 API
메시지창 띄우기
(결과 확인)
XML파일
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.ktds.lesson03.MainActivity">
<EditText
android:id="@+id/et_id"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Email or ID"
android:inputType="textEmailAddress"/>
<EditText
android:id="@+id/et_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Name"
android:inputType="text"/>
<EditText
android:id="@+id/et_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Password"
android:inputType="textPassword"/>
<Button
android:id="@+id/btn_regist"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Regist"
android:textAllCaps="false"/>
</LinearLayout>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | package com.ktds.lesson03; import android.support.v7.app.AlertDialog; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; public class MainActivity extends AppCompatActivity { private EditText et_id; private EditText et_name; private EditText et_password; private Button btn_regist; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); et_id = (EditText) findViewById(R.id.et_id); et_name = (EditText)findViewById(R.id.et_name); et_password = (EditText) findViewById(R.id.et_password); btn_regist = (Button) findViewById(R.id.btn_regist); btn_regist.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { String id = et_id.getText().toString(); String name = et_name.getText().toString(); String password = et_password.getText().toString(); String message = String.format("이메일: %s\n 이름: %s\n비밀번호 %s", id,name,password); AlertDialog.Builder dialog = new AlertDialog.Builder(MainActivity.this); dialog.setTitle("회원가입 안내"); dialog.setMessage(message); dialog.setPositiveButton("확인", null); dialog.create().show(); } }); } } | cs |
setContentView가 객체화를 한다.
et_id 등등의 id로 View를 가져올수 있다.
View를 가져오지만 Type이 맞지 않으므로 캐스팅을 한다.
'Develop > 안드로이드' 카테고리의 다른 글
(안드로이드 프로그래밍) 미니 계산기 만들기 실습 (0) | 2017.09.26 |
---|---|
(안드로이드 프로그래밍) Activity? Activity 생명주기 (0) | 2017.09.26 |
(안드로이드 프로그래밍) Linear Layout 실습 3 (0) | 2017.09.26 |
(안드로이드 프로그래밍) Linear Layout 실습 2 (0) | 2017.09.26 |
(안드로이드 프로그래밍) Linear Layout 실습 1 (0) | 2017.09.26 |