awtk/demos/res/raw/ui/keyboard.xml

49 lines
1.4 KiB
XML
Raw Normal View History

2018-06-19 16:29:23 +08:00
<window anim_hint="htranslate" layout="h30 c1 m:2 s:2">
<view layout="r1 c0">
<label w="30%" text="Name"/>
<edit w="70%" text="" tips="name"/>
</view>
2018-06-20 16:04:13 +08:00
<view layout="r1 c0">
<label w="30%" text="Desc"/>
<edit w="70%" text="" tips="desc"/>
</view>
2018-06-19 16:29:23 +08:00
<view layout="r1 c0">
<label w="30%" text="Int"/>
<edit w="70%" text="" tips="int" input_type="int"/>
</view>
<view layout="r1 c0">
<label w="30%" text="UInt"/>
<edit w="70%" text="" tips="unsigned int" input_type="uint"/>
</view>
<view layout="r1 c0">
<label w="30%" text="Float"/>
<edit w="70%" text="" tips="float" input_type="float"/>
</view>
<view layout="r1 c0">
<label w="30%" text="UFloat"/>
<edit w="70%" text="" tips="unsigned float" input_type="ufloat"/>
</view>
<view layout="r1 c0">
<label w="30%" text="Hex"/>
<edit w="70%" text="" tips="hex number" input_type="hex"/>
</view>
<view layout="r1 c0">
<label w="30%" text="Mobile"/>
<edit w="70%" text="" tips="phone number" input_type="phone"/>
</view>
<view layout="r1 c0">
<label w="30%" text="Email"/>
<edit w="70%" text="" tips="email" input_type="email"/>
</view>
<view layout="r1 c0">
<label w="30%" text="Password"/>
<edit w="70%" text="" tips="password" input_type="password"/>
</view>
<view layout="r1 c0">
2018-06-21 14:02:40 +08:00
<label w="30%" text="Overlap"/>
<edit w="70%" text="" tips="name"/>
2018-06-19 16:29:23 +08:00
</view>
2018-06-21 14:02:40 +08:00
<view/>
<button name="close" text="Close"/>
2018-06-19 16:29:23 +08:00
</window>