<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>GUI GuiderのトピックRe: Text Area widget re-entry problem</title>
    <link>https://community.nxp.com/t5/GUI-Guider/Text-Area-widget-re-entry-problem/m-p/1503300#M124</link>
    <description>&lt;P&gt;I am using GUI Guider 1.4.0 -&amp;gt; LVGL v8.2.0 -&amp;gt; LPC54S018&lt;/P&gt;&lt;P&gt;I am able to recreate the problem with the Simulator (C) or running the code on my development board.&lt;/P&gt;</description>
    <pubDate>Tue, 09 Aug 2022 12:57:14 GMT</pubDate>
    <dc:creator>mitchkapa</dc:creator>
    <dc:date>2022-08-09T12:57:14Z</dc:date>
    <item>
      <title>Text Area widget re-entry problem</title>
      <link>https://community.nxp.com/t5/GUI-Guider/Text-Area-widget-re-entry-problem/m-p/1502714#M120</link>
      <description>&lt;P&gt;I am having a problem with the Text Area Widget in my GUI. When the TA Widget is tapped for the first time the keyboard immediately opens.&amp;nbsp; But once the keyboard has been closed (either with the keyboard button or check button) it is very difficult to get the keyboard to re-appear.&amp;nbsp; It takes many touches of the TA Widget for the keyboard to come back.&amp;nbsp; Perhaps the target touch area has been reduced to a very small target I haven't been able to tell that with certainty yet.&lt;/P&gt;&lt;P&gt;If I leave the screen with that TA Widget and return to it the first tap to bring up the keyboard always works. But again after the first time it is very difficult after that.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Aug 2022 16:47:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/GUI-Guider/Text-Area-widget-re-entry-problem/m-p/1502714#M120</guid>
      <dc:creator>mitchkapa</dc:creator>
      <dc:date>2022-08-08T16:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Text Area widget re-entry problem</title>
      <link>https://community.nxp.com/t5/GUI-Guider/Text-Area-widget-re-entry-problem/m-p/1503148#M122</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&amp;nbsp;&lt;A id="link_6" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://community.nxp.com/t5/user/viewprofilepage/user-id/193669" target="_self" aria-label="View Profile of mitchkapa"&gt;&lt;SPAN class=""&gt;mitchkapa&lt;/SPAN&gt;&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;Which chip do you used?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Alice&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 08:58:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/GUI-Guider/Text-Area-widget-re-entry-problem/m-p/1503148#M122</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2022-08-09T08:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: Text Area widget re-entry problem</title>
      <link>https://community.nxp.com/t5/GUI-Guider/Text-Area-widget-re-entry-problem/m-p/1503300#M124</link>
      <description>&lt;P&gt;I am using GUI Guider 1.4.0 -&amp;gt; LVGL v8.2.0 -&amp;gt; LPC54S018&lt;/P&gt;&lt;P&gt;I am able to recreate the problem with the Simulator (C) or running the code on my development board.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 12:57:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/GUI-Guider/Text-Area-widget-re-entry-problem/m-p/1503300#M124</guid>
      <dc:creator>mitchkapa</dc:creator>
      <dc:date>2022-08-09T12:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: Text Area widget re-entry problem</title>
      <link>https://community.nxp.com/t5/GUI-Guider/Text-Area-widget-re-entry-problem/m-p/1504557#M128</link>
      <description>&lt;P&gt;Hi&amp;nbsp;mitchkapa,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Currently the keyboard will open when FOCUS event is triggered for TA, so you can click any area outside of TA and click TA area again to make keyboard appear. To open keyboard when clicking TA, please update&amp;nbsp;ta_event_cb function to the following in setup_scr_screen.c.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;static void ta_event_cb(lv_event_t *e)&lt;BR /&gt;{&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;lv_event_code_t code = lv_event_get_code(e);&lt;BR /&gt;lv_obj_t *ta = lv_event_get_target(e);&lt;BR /&gt;lv_obj_t *kb = lv_event_get_user_data(e);&lt;BR /&gt;&lt;STRONG&gt;if (code == LV_EVENT_FOCUSED || code == LV_EVENT_CLICKED)&lt;/STRONG&gt;&lt;BR /&gt;{&lt;/P&gt;
&lt;P class="lia-indent-padding-left-60px"&gt;lv_keyboard_set_textarea(kb, ta);&lt;BR /&gt;lv_obj_move_foreground(kb);&lt;BR /&gt;lv_obj_clear_flag(kb, LV_OBJ_FLAG_HIDDEN);&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;}&lt;BR /&gt;if (code == LV_EVENT_DEFOCUSED)&lt;BR /&gt;{&lt;/P&gt;
&lt;P class="lia-indent-padding-left-60px"&gt;lv_keyboard_set_textarea(kb, NULL);&lt;BR /&gt;lv_obj_move_background(kb);&lt;BR /&gt;lv_obj_add_flag(kb, LV_OBJ_FLAG_HIDDEN);&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;}&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2022 05:59:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/GUI-Guider/Text-Area-widget-re-entry-problem/m-p/1504557#M128</guid>
      <dc:creator>zhenhualuo</dc:creator>
      <dc:date>2022-08-11T05:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: Text Area widget re-entry problem</title>
      <link>https://community.nxp.com/t5/GUI-Guider/Text-Area-widget-re-entry-problem/m-p/1505017#M129</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2022 13:16:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/GUI-Guider/Text-Area-widget-re-entry-problem/m-p/1505017#M129</guid>
      <dc:creator>mitchkapa</dc:creator>
      <dc:date>2022-08-11T13:16:52Z</dc:date>
    </item>
  </channel>
</rss>

