일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 표준 라이브러리 함수
- 졸업 작품 소재
- C++
- 실습
- c언어
- 언제나 휴일
- 동영상
- 표준 입출력
- 언제나휴일
- 소스 코드
- 강의
- c#
- 실습으로 다지는 c#
- 네트워크 프로그래밍
- 유튜브 동영상 강의
- 추천
- 졸업 작품
- 소켓 통신
- 원격 제어 프로그램
- 파이썬
- 알고리즘
- 프로젝트
- 동영상 강의
- 클래스 다이어그램
- 무료 동영상 강의
- 안드로이드 앱 개발
- Windows Forms
- 충남 천안
- 산책하기 좋은 곳
- 캡슐화
Archives
- Today
- Total
프로그래밍 언어 및 기술 [언제나휴일]
4. 기본 컨트롤 – 2. EditText 본문
이번에는 사용자가 문자열을 입력할 때 사용하는 EditText를 사용하는 간단한 실습을 해 봅시다.
EditText 에 사용자가 어떤 값을 입력할 것인지 미리 정보를 주고자 한다면 hint 속성을 사용하세요.
힌트의 글자색은 textColorHint 속성을 사용합니다.
또한 EditText에 입력해야 할 형식이 수일 때는 inputType을 number로 지정합니다.
만약 비밀번호를 입력하는 것이라면 inputType을 textPassword를 지정합니다.
<?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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.ehclub.ex_edittext.MainActivity"
android:orientation="vertical">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="아이디"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="비밀번호"
android:inputType="textPassword"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="비밀번호 다시"
android:inputType="textPassword"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColorHint="#FF0000"
android:hint="나이"
android:inputType="number"/>
</LinearLayout>
언제나휴일 추천 여행 및 산책
'Java 안드로이드 > 안드로이드' 카테고리의 다른 글
4. 기본 컨트롤 – 6. Switch (0) | 2025.01.04 |
---|---|
4. 기본 컨트롤 – 5. RadioButton (0) | 2025.01.04 |
4. 기본 컨트롤 – 4. CheckBox (0) | 2025.01.04 |
4. 기본 컨트롤 – 3. Button (0) | 2025.01.04 |
4. 기본 컨트롤 – 1. TextView (0) | 2025.01.04 |
3. Layout – 4. GridLayout (0) | 2025.01.04 |
3. Layout – 3. TableLayout (0) | 2025.01.04 |
3. Layout – 2. RelativeLayout (0) | 2025.01.04 |