Notice
Recent Posts
Recent Comments
Link
관리 메뉴

설.현.아빠

[IME] 구현해보기 본문

안드로이드/String

[IME] 구현해보기

설.현.아빠 2011. 2. 11. 11:36




 

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

 


Comments