1<component> 2 <consts> 3 <px name="size" value="100%"/> 4 </consts> 5 6 <api> 7 <prop type="string" name="title" default="No title"/> 8 <prop type="string" name="action" default="No action"/> 9 <prop type="color" name="bg_color" default="0xcccccc"/> 10 <prop type="style" name="btn_rel_style"/> 11 <prop type="style" name="btn_pr_style"/> 12 </api> 13 14 <styles> 15 <style name="gray" bg_color="0x888888"/> 16 <style name="blue" bg_color="0x0000ff"/> 17 </styles> 18 19 <view extends="lv_obj" style_radius="3" width="#size" height="content" style_bg_color="$bg_color" > 20 <lv_label text="$title" align="left_mid"/> 21 <my_button styles="$btn_rel_style $btn_pr_style:pressed" btn_text="$action" align="right_mid"/> 22 </view> 23</component> 24