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

53 lines
2.1 KiB
XML
Raw Normal View History

2018-07-09 18:17:21 +08:00
<window anim_hint="htranslate">
<list_view x="0" y="0" w="100%" h="-50" item_height="36" auto_hide_scroll_bar="true">
<scroll_view name="view" x="0" y="0" w="-12" h="100%">
2018-07-17 11:27:14 +08:00
<list_item style="empty" layout="r1 c0">
2018-07-09 18:17:21 +08:00
<label w="30%" text="Name"/>
<edit w="70%" text="" tips="name"/>
</list_item>
2018-07-17 11:27:14 +08:00
<list_item style="empty" layout="r1 c0">
2018-07-09 18:17:21 +08:00
<label w="30%" text="Desc"/>
<edit w="70%" text="" tips="desc"/>
</list_item>
2018-07-17 11:27:14 +08:00
<list_item style="empty" layout="r1 c0">
2018-07-09 18:17:21 +08:00
<label w="30%" text="Int"/>
<edit w="70%" text="" tips="int" input_type="int"/>
</list_item>
2018-07-17 11:27:14 +08:00
<list_item style="empty" layout="r1 c0">
2018-07-09 18:17:21 +08:00
<label w="30%" text="UInt"/>
<edit w="70%" text="" tips="unsigned int" input_type="uint"/>
</list_item>
2018-07-17 11:27:14 +08:00
<list_item style="empty" layout="r1 c0">
2018-07-09 18:17:21 +08:00
<label w="30%" text="Float"/>
<edit w="70%" text="" tips="float" input_type="float"/>
</list_item>
2018-07-17 11:27:14 +08:00
<list_item style="empty" layout="r1 c0">
2018-07-09 18:17:21 +08:00
<label w="30%" text="UFloat"/>
<edit w="70%" text="" tips="unsigned float" input_type="ufloat"/>
</list_item>
2018-07-17 11:27:14 +08:00
<list_item style="empty" layout="r1 c0">
2018-07-09 18:17:21 +08:00
<label w="30%" text="Hex"/>
<edit w="70%" text="" tips="hex number" input_type="hex"/>
</list_item>
2018-07-17 11:27:14 +08:00
<list_item style="empty" layout="r1 c0">
2018-07-09 18:17:21 +08:00
<label w="30%" text="Mobile"/>
<edit w="70%" text="" tips="phone number" input_type="phone"/>
</list_item>
2018-07-17 11:27:14 +08:00
<list_item style="empty" layout="r1 c0">
2018-07-09 18:17:21 +08:00
<label w="30%" text="Email"/>
<edit w="70%" text="" tips="email" input_type="email"/>
</list_item>
2018-07-17 11:27:14 +08:00
<list_item style="empty" layout="r1 c0">
2018-07-09 18:17:21 +08:00
<label w="30%" text="Password"/>
<edit w="70%" text="" tips="password" input_type="password"/>
</list_item>
2018-07-17 11:27:14 +08:00
<list_item style="empty" layout="r1 c0">
2018-07-09 18:17:21 +08:00
<label w="30%" text="Overlap"/>
<edit w="70%" text="" tips="name"/>
</list_item>
</scroll_view>
<scroll_bar_d name="bar" x="right" y="0" w="12" h="100%" value="0"/>
</list_view>
<button name="close" x="center" y="bottom:10" w="25%" h="30" text="Close"/>
2018-06-19 16:29:23 +08:00
</window>