설.현.아빠
[IME] 구현해보기 본문
<?xml version="1.0" encoding="utf-8"?> <!-- main.xml --> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="1"
>
<TableRow>
<TextView
android:text="규칙없음"/>
<EditText/>
</TableRow>
<TableRow>
<TextView
android:text="이메일 주소 : "/>
<EditText
android:inputType="text|textEmailAddress"
android:imeOptions="actionSend"/>
</TableRow>
<TableRow>
<TextView
android:text="부호있는 십진수 : "/>
<EditText
android:inputType="number|numberSigned|numberDecimal"
android:imeOptions="actionDone"/>
</TableRow>
<TableRow>
<TextView
android:text="날짜 : "/>
<EditText
android:inputType="date"/>
</TableRow>
<TableRow>
<TextView
android:text="여러줄 입력 : "/>
<EditText
android:inputType="text|textMultiLine|textAutoCorrect"
android:minLines="3"
android:gravity="top"/>
</TableRow>
</TableLayout>
</ScrollView>
'안드로이드 > String' 카테고리의 다른 글
android:textAppearance 사용하기 (1) | 2011.02.11 |
---|---|
ClipboardManager 를 이용한 copy & paste (0) | 2011.02.11 |
[autoLink] TextView를 이용하여 자동 링크 생성하기. (0) | 2011.02.11 |
문자열을 Resource ID로 사용하는 방법 (0) | 2011.02.11 |
안드로이드에서 문자열을 표현하는 방법 (0) | 2011.02.11 |