반응형

1. 시험환경

- Android Studio v4.2

- JAVA

 

2. 목적

- EditText 위젯의 기본 사용법을 학습한다.

 

3. 적용

inputType이 다른 EditText 위젯 3개를 생성하였다.

<?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"
    android:orientation="vertical"
    tools:context=".MainActivity">
    <EditText
        android:id="@+id/editTxtId"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="input your id"
        android:inputType="text"
        android:textSize="24sp" />
    <EditText
        android:id="@+id/editTxtPw"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="input your password"
        android:inputType="numberPassword"
        android:textSize="24sp" />
    <EditText
        android:id="@+id/editTxtEmail"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="input your email"
        android:inputType="textEmailAddress"
        android:textSize="24sp" />
</LinearLayout>

 

4. 결과

- EditText에 설정된 inputType에 따라 나타나는 키패드를 확인한다.

 

 

※ 내용이 도움 되셨다면 광고 클릭 한번 부탁드립니다.

반응형

'안드로이드' 카테고리의 다른 글

Android Studio 설치  (0) 2022.12.09
[widget] RadioButton, CheckBox 기본 사용법  (0) 2021.07.22
[widget] TextView 기본 사용법  (0) 2021.07.22
[Layout] TableLayout 예제  (0) 2021.07.21
[Layout] FrameLayout에서 뷰 전환  (0) 2021.07.21
반응형

1. 시험환경

- Android Studio v4.2

 

2. 목적

- Android Studio에서 신규 프로젝트를 생성한다.

- Android Studio 기본 조작법을 학습한다.

 

3. 적용

① Android Studio 설치 후 프로그램을 실행한다.

    - Create New Poject 메뉴를 클릭한다.

신규 프로젝트 생성

 

② 템플릿 중 하나를 선택한다.

    - Empty Activity를 선택하였다.

Empty Activity 템플릿 선택

 

③ 프로젝트 이름을 입력한다.

    - 첫글자는 대문자를 입력한다.

프로젝트명 입력

 

4. 결과

MainActivity.java는 프로젝트 코드의 시작점이다.

코드 시작점

 

activity_main.xml은 App의 디자인을 구현한다.

    - Design : Layout view에 Design만 표시

    - BluePrint : Layout view에 Blueprint만 표시

    - Design and BluePrint : Layout view에 Design과 Blueprint 함께 표시

App 디자인 뷰

 

    - Code : 코드 창만 표시

    - Split : 코드와 디자인 창 함께 표시

    - Design : 디자인 창만 표시

디자인 창 보기 설정

 

 

※ 내용이 도움 되셨다면 광고 클릭 한번 부탁드립니다.

반응형

+ Recent posts