在 AWTK 中 如何让文本滚动起来

2019-12-09 19:15发布

在 AWTK 中 如何让文本滚动起来

在很多时候,特别是在小屏幕的硬件上,控件比较小而要显示的文本比较长。

此时,我们需要在控件获得焦点时/或点击时,让文本滚动起来,以便让用户看到完整的信息。

AWTK 提供了 hscroll_label_t 控件,可以轻松满足文本滚动的需求。

一、基本用法

示例:


  1. <window anim_hint="htranslate" text="hscroll_label" children_layout="default(c=1,h=30,xm=10,s=5)">
  2.   <hscroll_label text="炫酷的 GUI 引擎。" />
  3.   <hscroll_label text="炫酷的 GUI 引擎。" style="right"/>

  4.   <hscroll_label
  5.     lull="1000"
  6.     loop="true"
  7.     yoyo="true"
  8.     ellipses="true"
  9.     focusable="true"
  10.     text="(always ellipses loop yoyo) 为用户提供一个功能强大、高效可靠、简单易用、可轻松做出炫酷效果的 GUI 引擎。" />

  11.   <hscroll_label
  12.     focusable="true"
  13.     only_focus="true"
  14.     text="(only_focus noloop) 为用户提供一个功能强大、高效可靠、简单易用、可轻松做出炫酷效果的 GUI 引擎。" />

  15.   <hscroll_label
  16.     loop="true"
  17.     ellipses="true"
  18.     focusable="true"
  19.     only_focus="true"
  20.     text="(only_focus ellipses loop) 为用户提供一个功能强大、高效可靠、简单易用、可轻松做出炫酷效果的 GUI 引擎。" />

  21.   <hscroll_label
  22.     style="green"
  23.     loop="true"
  24.     yoyo="true"
  25.     ellipses="true"
  26.     focusable="true"
  27.     only_focus="true"
  28.     text="(only_focus ellipses loop yoyo) 为用户提供一个功能强大、高效可靠、简单易用、可轻松做出炫酷效果的 GUI 引擎。" />

  29. </window>
复制代码

二、扩展用法

但有时用的不是单纯的文本控件,而是列表项、多选按钮、单选按钮或其它功能的控件,那该怎么办呢?

其实也很简单,把 hscroll_label 作为该控件的子控件,并指定 only_parent_focus 属性为 true 即可。

示例:


  1. <window anim_hint="htranslate" move_focus_prev_key="up" move_focus_next_key="down" text="Basic Controls">
  2.   <row x="0" y="180" w="-50" h="90" children_layout="default(r=1,c=2,m=2)">
  3.     <column children_layout="default(r=3,c=1,ym=2,s=10)" >
  4.       <check_button name="r1" focusable="true" >
  5.         <hscroll_label only_parent_focus="true" x="right" y="middle" w="-30" h="100%"
  6.           text="1.AWTK 为用户提供一个功能强大、高效可靠、简单易用、可轻松做出炫酷效果的 GUI 引擎。" />
  7.       </check_button>

  8.       <check_button name="r2" focusable="true">
  9.         <hscroll_label only_parent_focus="true" x="right" y="middle" w="-30" h="100%"
  10.           text="2.AWTK 为用户提供一个功能强大、高效可靠、简单易用、可轻松做出炫酷效果的 GUI 引擎。" />
  11.       </check_button>

  12.       <check_button name="r3" value="true" focusable="true">
  13.         <hscroll_label only_parent_focus="true" x="right" y="middle" w="-30" h="100%"
  14.           text="3.AWTK 为用户提供一个功能强大、高效可靠、简单易用、可轻松做出炫酷效果的 GUI 引擎。" />
  15.       </check_button>
  16.     </column>
  17.   </row>
  18. </window>
复制代码
0条回答

一周热门 更多>