본문 바로가기

Android

텍스트뷰(textview) - 기본속성

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:id="@+id/LinearLayout1"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:orientation="vertical"

    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" >

 

    <EditText

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:inputType="text" />

 

    <EditText

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:inputType="number" />

 

    <EditText

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:inputType="textPassword" />

   

    <EditText

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:inputType="textEmailAddress" />

 

</LinearLayout>







'Android' 카테고리의 다른 글

버튼 - 라디오버튼  (1) 2013.03.28
버튼 - 콤보박스  (0) 2013.03.28
이벤트 예제 - 클릭  (1) 2013.03.28
입력 - 터치 실습  (0) 2013.03.28
입력 - 터치(touch)  (0) 2013.03.28