CN107844255B - Touch event response control method, intelligent device and storage device - Google Patents

Touch event response control method, intelligent device and storage device Download PDF

Info

Publication number
CN107844255B
CN107844255B CN201710935223.0A CN201710935223A CN107844255B CN 107844255 B CN107844255 B CN 107844255B CN 201710935223 A CN201710935223 A CN 201710935223A CN 107844255 B CN107844255 B CN 107844255B
Authority
CN
China
Prior art keywords
view
group
layout
touch event
partition
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN201710935223.0A
Other languages
Chinese (zh)
Other versions
CN107844255A (en
Inventor
叶垒
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Huizhou TCL Mobile Communication Co Ltd
Original Assignee
Huizhou TCL Mobile Communication Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Huizhou TCL Mobile Communication Co Ltd filed Critical Huizhou TCL Mobile Communication Co Ltd
Priority to CN201710935223.0A priority Critical patent/CN107844255B/en
Publication of CN107844255A publication Critical patent/CN107844255A/en
Application granted granted Critical
Publication of CN107844255B publication Critical patent/CN107844255B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F3/00Input arrangements for transferring data to be processed into a form capable of being handled by the computer; Output arrangements for transferring data from processing unit to output unit, e.g. interface arrangements
    • G06F3/01Input arrangements or combined input and output arrangements for interaction between user and computer
    • G06F3/048Interaction techniques based on graphical user interfaces [GUI]
    • G06F3/0487Interaction techniques based on graphical user interfaces [GUI] using specific features provided by the input device, e.g. functions controlled by the rotation of a mouse with dual sensing arrangements, or of the nature of the input device, e.g. tap gestures based on pressure sensed by a digitiser
    • G06F3/0488Interaction techniques based on graphical user interfaces [GUI] using specific features provided by the input device, e.g. functions controlled by the rotation of a mouse with dual sensing arrangements, or of the nature of the input device, e.g. tap gestures based on pressure sensed by a digitiser using a touch-screen or digitiser, e.g. input of commands through traced gestures

Landscapes

  • Engineering & Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Human Computer Interaction (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • User Interface Of Digital Computer (AREA)

Abstract

The invention discloses a touch event response control method, intelligent equipment and a storage device, wherein the method comprises the following steps: dividing a layout area where the first-level group view is located into a plurality of layout partitions in advance according to the layout size occupied by the first-level group view in the tree view; creating a partition view group, and adding views and/or branch group views under the primary group view to the partition view group one by one according to the superposition condition; and receiving touch operation of a user, judging the layout subarea to which the touch event coordinate belongs, and distributing the touch event in the subarea view group corresponding to the layout subarea to which the touch event coordinate belongs until the view or the branch view group responds to the touch event. The method provided by the invention can directly serve the touch event to the corresponding partition view group according to the touch event coordinate when the touch event is served, and the view or branch group view in the partition view group responds, so that the touch event coordinate does not need to be inquired one by one whether to be positioned in the layout area of the view or branch group view.

Description

Touch event response control method, intelligent device and storage device
Technical Field
The invention relates to the technical field of intelligent equipment, in particular to a touch event response control method, intelligent equipment and a storage device.
Background
Currently, as a mainstream mobile operating system in the market, Android presents a colorful interactive interface for a user by using a Graphical User Interface (GUI) technology. The GUI generally adopts a View architecture form to organize various UI (user interface) elements, wherein each basic UI element exists in a View (View), multiple views can be contained in the same Group View (View Group), and the Group View combined by the views continues to be combined with other views and even a Group View, and finally a Tree View (View Tree) is generated. The tree View has only one Root node (View Root).
When the touch screen detects the click or sliding of the user, touch events are generated and are finally sent to a root node and distributed in the tree view from top to bottom, if the touch events are processed by any view, the group view on the upper layer is informed not to distribute the events to other views, otherwise, the group view attempts to distribute the touch events to other views or group views contained in the group view until the touch events are processed by any view.
One problem with this distribution process is that when there are a very large number of views under a group view, in the worst case (i.e., when the view capable of handling the event is located at the last of the storage queues inside the group view), the following decisions need to be made for all views under the group view:
1. whether the view can respond to touch events (some views may ignore all touch events, depending on the setting);
2. whether the coordinates of the touch event are within the layout (layout) area of the view;
3. after the touch event is dispatched to the view, whether the view has processed the event.
The whole distribution process needs to traverse all the views, and the efficiency is low.
Accordingly, the prior art is yet to be improved and developed.
Disclosure of Invention
The present invention provides a touch event response control method, an intelligent device and a storage apparatus, aiming at solving the problem of low touch event distribution efficiency.
The technical scheme adopted by the invention for solving the technical problem is as follows:
a touch event response control method, wherein the touch event response control method comprises:
dividing a layout area where the first-level group view is located into a plurality of layout partitions in advance according to the layout size occupied by the first-level group view in the tree view;
creating partition view groups in one-to-one correspondence with the layout partitions, and adding views and/or branch group views under a primary group view to the partition view groups one by one according to the superposition condition, wherein the views and/or branch group views belong to at least one partition view group;
and receiving touch operation of a user, judging the layout subarea to which the touch event coordinate belongs, and distributing the touch event in the subarea view group corresponding to the layout subarea to which the touch event coordinate belongs until the view or the branch view group responds to the touch event.
Further, the dividing the layout area where the first-level group view is located into a plurality of layout partitions according to the layout size occupied by the first-level group view in the tree view specifically includes the steps of:
calculating the size and position of a layout area required by the view and/or branch group view under the first-level group view in the tree view to complete the layout;
judging whether the layout size occupied by the primary group view is larger than 25% of the size of the display screen; if so, equally dividing the layout area where the first-level group view is located into four rectangular layout subareas; and if not, equally dividing the layout area where the first-level group view is located into nine rectangular layout partitions.
Further, the calculating the size and position of the layout area required by the view and/or the branch group view under the first-level group view in the tree view to complete the layout specifically comprises the following steps:
initiating one layout by the tree view;
performing layout operation on all primary group views in the tree view, and primary group view internal views and/or branch group views;
the primary group view performs size and position calculations for itself and the included views and/or the branch group view.
Further, judging whether the layout size occupied by the primary group view is larger than 25% of the size of the display screen; if so, equally dividing the layout area where the first-level group view is located into four rectangular layout subareas; if not, the step of equally dividing the layout area where the first-level group view is located into nine rectangular layout partitions specifically comprises the following steps:
judging whether the size of the primary group view of which the size and the position of the layout area are calculated is larger than 25% of the size of the display screen;
if so, equally dividing the layout area where the first-level group view is located into four rectangular layout subareas;
and if not, equally dividing the layout area where the first-level group view is located into nine rectangular layout partitions.
Further, the creating of partition view groups corresponding to the layout partitions one by one, and adding views and/or branch group views under a primary group view to the partition view groups one by one according to overlapping conditions, wherein the views and/or branch group views belong to at least one partition view group specifically includes the steps of:
creating a partition view group by contrasting each layout partition;
comparing the view and/or branch group view under the primary group view with the superposition condition of each layout partition one by one;
and adding all views and/or branch group views which are overlapped with the same layout partition to a partition view group corresponding to the layout partition, wherein one view or one branch group view belongs to one or more partition view groups.
Further, the receiving a touch operation of a user, determining a layout partition to which the touch event coordinate belongs, and dispatching the touch event in a partition view group corresponding to the layout partition to which the touch event coordinate belongs until the view or branch view group responds to the touch event specifically includes the steps of:
the touch screen receives a user click operation;
the input event receiver passes the touch event to the root node;
the root node starts to transmit the touch events layer by layer in the tree view;
one primary group view in the tree view receives the touch event, acquires a touch event coordinate and judges the touch event coordinate and the layout subarea;
the primary group view dispatches the touch event to a partition view group corresponding to the layout partition;
touch event dispatch is performed within the partitioned view groups until a view or branch view group responds to a touch event.
Further, touch events are only dispatched once for views belonging to multiple partitioned view groups simultaneously or for branch group views.
Further, the creating of the partition view group corresponding to the layout partition one to one, adding the view and/or branch group view under the primary group view to the partition view group one to one according to the coincidence condition, after the view and/or branch group view at least belongs to one partition view group, receiving the touch operation of the user, judging the layout partition to which the touch event coordinate belongs, and dispatching the touch event in the partition view group corresponding to the layout partition to which the touch event coordinate belongs until the view or branch view group responds to the touch event, further includes the steps of:
the final packet data is saved in the primary group view.
A smart device, comprising: a processor, a storage device communicatively coupled to the processor, the storage device adapted to store a plurality of instructions; the processor is suitable for calling instructions in the storage device to execute the touch event response control method.
A storage device, wherein the storage device stores a touch event response control program that, when executed by a processor, implements a touch event response control method as described above.
The invention provides a touch event response control method, intelligent equipment and a storage device, wherein the method comprises the following steps: dividing a layout area where the first-level group view is located into a plurality of layout partitions in advance according to the layout size occupied by the first-level group view in the tree view; creating partition view groups in one-to-one correspondence with the layout partitions, and adding views and/or branch group views under a primary group view to the partition view groups one by one according to the superposition condition, wherein the views and/or branch group views belong to at least one partition view group; and receiving touch operation of a user, judging the layout subarea to which the touch event coordinate belongs, and distributing the touch event in the subarea view group corresponding to the layout subarea to which the touch event coordinate belongs until the view or the branch view group responds to the touch event. The method provided by the invention can directly serve the touch event to the corresponding partition view group according to the touch event coordinate when the touch event is served, and the view or branch group view in the partition view group responds, so that the touch event coordinate does not need to be inquired one by one whether to be positioned in the layout area of the view or branch group view.
Drawings
FIG. 1 is a flow chart of a touch event response control method according to a first preferred embodiment of the present invention.
Fig. 2 is a functional block diagram of a preferred embodiment of the intelligent device of the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the present invention clearer and clearer, the present invention is further described in detail below with reference to the accompanying drawings and examples. It should be understood that the specific embodiments described herein are merely illustrative of the invention and are not intended to limit the invention.
Example one
Referring to fig. 1, fig. 1 is a flowchart illustrating a touch event response control method according to a first preferred embodiment of the present invention. As shown in fig. 1, a touch event response control method includes the steps of:
and S100, dividing a layout area where the first-level group view is located into a plurality of layout partitions in advance according to the layout size occupied by the first-level group view in the tree view.
In the preferred embodiment of the present invention, the primary group view is a group view directly belonging to the root node. In specific implementation, the step S100 specifically includes: and S110, calculating the size and the position of a layout area required by the completion of the layout of the view and/or the branch group view under the first-level group view in the tree view. The branch group view refers to a group view indirectly belonging to the root node, such as a secondary group view directly belonging to a primary group view, a tertiary group view directly belonging to a secondary group view, and the like. S120, judging whether the layout size occupied by the primary group view is larger than 25% of the size of the display screen; if so, equally dividing the layout area where the first-level group view is located into four rectangular layout subareas; and if not, equally dividing the layout area where the first-level group view is located into nine rectangular layout partitions.
Wherein, S110 further specifically includes: and S111, initiating layout once by the tree view. And S112, performing layout operation on all the primary group views in the tree view, and the primary group view internal view and/or the branch group view. S113, the primary group view completes the size and position calculation of the primary group view and the included view and/or the branch group view.
And S120 further specifically includes: and S121, judging whether the size of the primary group view of which the layout area size and position calculation is finished is larger than 25% of the size of the display screen. And S122, if so, equally dividing the layout area where the primary group view is located into four rectangular layout partitions. And S123, if not, equally dividing the layout area where the first-level group view is located into nine rectangular layout partitions.
S200, creating partition view groups corresponding to the layout partitions one by one, and adding views and/or branch group views under the primary group view to the partition view groups one by one according to the superposition condition, wherein the views and/or branch group views at least belong to one partition view group.
The method specifically comprises the following steps: s210, creating a partition view group by contrasting each layout partition. And S220, contrasting the view under the primary group view and/or the coincidence condition of the branch group view and each layout subarea one by one. And S230, adding all views and/or branch group views which are overlapped with the same layout partition to a partition view group corresponding to the layout partition, wherein one view or one branch group view belongs to one or more partition view groups.
S300, receiving touch operation of a user, judging a layout subarea to which the touch event coordinate belongs, and distributing the touch event in a subarea view group corresponding to the layout subarea to which the touch event coordinate belongs until the view or the branch view group responds to the touch event.
The method specifically comprises the following steps: s310, the touch screen receives a user click operation. And S320, the input event receiver transmits the touch event to the root node. And S330, the root node starts to transmit the touch events layer by layer in the tree view. S340, receiving the touch event by one primary group view in the tree view, acquiring the coordinate of the touch event and judging the layout subarea of the coordinate of the touch event. And S350, the primary group view dispatches the touch event to the partition view group corresponding to the layout partition. And S360, distributing the touch events in the partitioned view group until a certain view or the branch view group responds to the touch events.
It should be noted that the touch event is only dispatched once for the view belonging to the plurality of partitioned view groups or the branch group view at the same time. The arrangement is to improve the dispatching efficiency of the touch event, and at the same time, adding one view or branch group view to a plurality of partition view groups can ensure that no matter which layout partition (the layout partition corresponding to the partition view groups to which the view belongs) the touch event coordinate falls, the touch event coordinate cannot be missed.
In a further preferred embodiment of the present invention, the creating a partition view group corresponding to the layout partitions in a one-to-one manner, adding views and/or branch group views under a primary group view to the partition view group in a one-to-one manner according to an overlapping condition, after the views and/or branch group views belong to at least one partition view group, receiving a touch operation of a user, determining the layout partition to which a touch event coordinate belongs, and dispatching a touch event in the partition view group corresponding to the layout partition to which the touch event coordinate belongs until the view or branch view group responds to the touch event further includes: the final packet data is saved in the primary group view.
The touch event response control method provided by the invention comprises the following steps: dividing a layout area where the first-level group view is located into a plurality of layout partitions in advance according to the layout size occupied by the first-level group view in the tree view; creating partition view groups in one-to-one correspondence with the layout partitions, and adding views and/or branch group views under a primary group view to the partition view groups one by one according to the superposition condition, wherein the views and/or branch group views belong to at least one partition view group; and receiving touch operation of a user, judging the layout subarea to which the touch event coordinate belongs, and distributing the touch event in the subarea view group corresponding to the layout subarea to which the touch event coordinate belongs until the view or the branch view group responds to the touch event. The method provided by the invention can directly serve the touch event to the corresponding partition view group according to the touch event coordinate when the touch event is served, and the view or branch group view in the partition view group responds, so that the touch event coordinate does not need to be inquired one by one whether to be positioned in the layout area of the view or branch group view.
Example two
An embodiment of the present invention further provides an intelligent device, as shown in fig. 2, the intelligent device in the embodiment of the present invention may be a mobile phone (or a tablet computer), where the intelligent device in the embodiment includes a processor 10 and a memory 20 connected to the processor 10;
the memory 20 stores a touch event response control program which when executed by the processor 10 performs the steps of:
dividing a layout area where the first-level group view is located into a plurality of layout partitions in advance according to the layout size occupied by the first-level group view in the tree view, specifically, as described in the embodiment of the method;
creating partition view groups in one-to-one correspondence with the layout partitions, and adding views and/or branch group views under a primary group view to the partition view groups one-to-one according to an overlapping condition, wherein the views and/or branch group views belong to at least one partition view group, specifically as described in the above method embodiment;
the touch operation of the user is received, the layout subarea to which the touch event coordinate belongs is judged, and the touch event is distributed in the subarea view group corresponding to the layout subarea to which the touch event coordinate belongs until the view or the branch view group responds to the touch event, and the method is specifically described in the embodiment of the method.
Further, the smart device, wherein the touch event response control program, when executed by the processor 10, further implements the steps of:
calculating the size and position of a layout area required by the view and/or branch group view under the first-level group view in the tree view to complete the layout, specifically as described in the above method embodiment;
judging whether the layout size occupied by the primary group view is larger than 25% of the size of the display screen; if so, equally dividing the layout area where the first-level group view is located into four rectangular layout subareas; if not, the layout area where the first-level group view is located is equally divided into nine rectangular layout partitions, specifically as described in the above method embodiment.
Further, the smart device, wherein the touch event response control program, when executed by the processor 10, further implements the steps of:
initiating a layout of the tree view, specifically as described in the above method embodiment;
performing layout operation on all primary group views in the tree view, and the primary group view internal view and/or the branch group view, specifically as described in the above method embodiment;
the primary group view performs the size and position calculations of itself and the included views and/or the branch group view, as described in the method embodiments above.
Further, the smart device, wherein the touch event response control program, when executed by the processor 10, further implements the steps of:
judging whether the size of the primary group view of which the size and the position of the layout area are calculated is larger than 25% of the size of the display screen or not, specifically according to the embodiment of the method;
if so, equally dividing the layout area where the first-level group view is located into four rectangular layout partitions, specifically as described in the above method embodiment;
if not, the layout area where the first-level group view is located is equally divided into nine rectangular layout partitions, specifically as described in the above method embodiment.
Further, the smart device, wherein the touch event response control program, when executed by the processor 10, further implements the steps of:
creating a partition view set against each layout partition, as described in the method embodiment above;
comparing the view and/or branch group view under the primary group view with the superposition condition of each layout partition one by one, specifically as described in the above method embodiment;
all views and/or branch group views which coincide with the same layout partition are added to the partition view group corresponding to the layout partition, one view or one branch group view belonging to one or more partition view groups, in particular as described in the above method embodiment.
Further, the smart device, wherein the touch event response control program, when executed by the processor 10, further implements the steps of:
the touch screen receives a user click operation, which is specifically described in the embodiment of the method;
the input event receiver delivers the touch event to the root node, as described in the above method embodiment;
the root node starts to transmit the touch events layer by layer in the tree view, specifically as described in the above method embodiment;
receiving the touch event by one first-level group view in the tree view, acquiring a touch event coordinate and judging the layout subarea of the touch event coordinate, wherein the method is specifically described in the embodiment of the method;
the primary group view dispatches the touch event to the partition view group corresponding to the layout partition, specifically as described in the above method embodiment;
touch event dispatch is performed within the partitioned view group until a view or branch view group responds to a touch event, as described in the method embodiments above.
Further, the smart device, wherein the touch event response control program, when executed by the processor 10, further implements the steps of:
the final packet data is stored in the level one group view, as described in the method embodiment above.
EXAMPLE III
A storage device, wherein the storage device stores a touch event response control program, and the touch event response control program, when executed by a processor 10, implements the touch event response control method, in particular according to the above method embodiment.
It is to be understood that the invention is not limited to the examples described above, but that modifications and variations may be effected thereto by those of ordinary skill in the art in light of the foregoing description, and that all such modifications and variations are intended to be within the scope of the invention as defined by the appended claims.

Claims (9)

1. A touch event response control method, characterized by comprising:
dividing a layout area where the first-level group view is located into a plurality of layout partitions in advance according to the layout size occupied by the first-level group view in the tree view;
creating partition view groups in one-to-one correspondence with the layout partitions, and adding views and/or branch group views under a primary group view to the partition view groups one by one according to the superposition condition, wherein the views and/or branch group views belong to at least one partition view group;
receiving touch operation of a user, judging a layout subarea to which a touch event coordinate belongs, and distributing the touch event in a subarea view group corresponding to the layout subarea to which the touch event coordinate belongs until the view or the branch view group responds to the touch event;
the method for dividing the layout area where the first-level group view is located into a plurality of layout partitions in advance according to the layout size occupied by the first-level group view in the tree-shaped view specifically comprises the following steps:
calculating the size and position of a layout area required by the view and/or branch group view under the first-level group view in the tree view to complete the layout;
judging whether the layout size occupied by the primary group view is larger than 25% of the size of the display screen; if so, equally dividing the layout area where the first-level group view is located into four rectangular layout subareas; if not, equally dividing the layout area where the first-level group view is located into nine rectangular layout partitions;
for views belonging to multiple partitioned view groups simultaneously or branch group views, touch events are only dispatched once.
2. The touch event response control method according to claim 1, wherein the step of calculating the size and position of the layout area required for completing the layout of the view and/or the branch group view under the first-level group view in the tree view specifically comprises the steps of:
initiating one layout by the tree view;
performing layout operation on all primary group views in the tree view, and primary group view internal views and/or branch group views;
the primary group view performs size and position calculations for itself and the included views and/or the branch group view.
3. The touch event response control method of claim 2, wherein the determining whether the primary group view accounts for a layout size greater than 25% of a display screen size; if so, equally dividing the layout area where the first-level group view is located into four rectangular layout subareas; if not, the step of equally dividing the layout area where the first-level group view is located into nine rectangular layout partitions specifically comprises the following steps:
judging whether the size of the primary group view of which the size and the position of the layout area are calculated is larger than 25% of the size of the display screen;
if so, equally dividing the layout area where the first-level group view is located into four rectangular layout subareas;
and if not, equally dividing the layout area where the first-level group view is located into nine rectangular layout partitions.
4. The touch event response control method according to claim 1, wherein the creating of the partition view group in one-to-one correspondence with the layout partition, and adding one-to-one views under a primary group view and/or branch group views to the partition view group according to the overlapping condition, the views and/or branch group views being specifically attributed to at least one partition view group comprises the steps of: creating a partition view group by contrasting each layout partition;
comparing the view and/or branch group view under the primary group view with the superposition condition of each layout partition one by one;
and adding all views and/or branch group views which are overlapped with the same layout partition to a partition view group corresponding to the layout partition, wherein one view or one branch group view belongs to one or more partition view groups.
5. The touch event response control method according to claim 1, wherein the receiving of the touch operation of the user, the determining of the layout partition to which the touch event coordinate belongs, and the dispatching of the touch event within the partition view group corresponding to the layout partition to which the touch event coordinate belongs until the view or the branch view group responds to the touch event specifically comprises the steps of:
the touch screen receives a user click operation;
the input event receiver passes the touch event to the root node;
the root node starts to transmit the touch events layer by layer in the tree view;
one primary group view in the tree view receives the touch event, acquires a touch event coordinate and judges the touch event coordinate and the layout subarea;
the primary group view dispatches the touch event to a partition view group corresponding to the layout partition;
touch event dispatch is performed within the partitioned view groups until a view or branch view group responds to a touch event.
6. The touch event response control method of claim 5, wherein the touch event is dispatched only once for views belonging to multiple partitioned view groups simultaneously or for branch group views.
7. The touch event response control method according to claim 1, wherein the creating of the partition view group corresponding to the layout partition one by one, adding the view and/or branch group view under the primary group view to the partition view group one by one according to the coincidence condition, after the view and/or branch group view belongs to at least one partition view group, the receiving of the touch operation of the user, determining the layout partition to which the touch event coordinate belongs, and dispatching the touch event in the partition view group corresponding to the layout partition to which the touch event coordinate belongs until the view or branch view group responds to the touch event further comprises:
the final packet data is saved in the primary group view.
8. A smart device, comprising: a processor, a storage device communicatively coupled to the processor, the storage device adapted to store a plurality of instructions; the processor is adapted to invoke instructions in the memory device to perform the method of implementing the touch event response control of any of the preceding claims 1-7.
9. A storage device storing a touch event response control program which, when executed by a processor, implements the touch event response control method of any one of claims 1 to 7.
CN201710935223.0A 2017-10-10 2017-10-10 Touch event response control method, intelligent device and storage device Active CN107844255B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201710935223.0A CN107844255B (en) 2017-10-10 2017-10-10 Touch event response control method, intelligent device and storage device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201710935223.0A CN107844255B (en) 2017-10-10 2017-10-10 Touch event response control method, intelligent device and storage device

Publications (2)

Publication Number Publication Date
CN107844255A CN107844255A (en) 2018-03-27
CN107844255B true CN107844255B (en) 2021-02-19

Family

ID=61661938

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201710935223.0A Active CN107844255B (en) 2017-10-10 2017-10-10 Touch event response control method, intelligent device and storage device

Country Status (1)

Country Link
CN (1) CN107844255B (en)

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103135892A (en) * 2013-03-04 2013-06-05 无锡德思普科技有限公司 Control managing method for graphic user interface
CN104461573A (en) * 2014-12-23 2015-03-25 上海斐讯数据通信技术有限公司 Control processing method of view hierachy
CN106325668A (en) * 2016-08-11 2017-01-11 网易(杭州)网络有限公司 Touch event response processing method and system
CN106873851A (en) * 2017-01-13 2017-06-20 北京奇虎科技有限公司 Method, device and terminal that 3D regards the Widget imitated are created in interactive interface

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103135892A (en) * 2013-03-04 2013-06-05 无锡德思普科技有限公司 Control managing method for graphic user interface
CN104461573A (en) * 2014-12-23 2015-03-25 上海斐讯数据通信技术有限公司 Control processing method of view hierachy
CN106325668A (en) * 2016-08-11 2017-01-11 网易(杭州)网络有限公司 Touch event response processing method and system
CN106873851A (en) * 2017-01-13 2017-06-20 北京奇虎科技有限公司 Method, device and terminal that 3D regards the Widget imitated are created in interactive interface

Also Published As

Publication number Publication date
CN107844255A (en) 2018-03-27

Similar Documents

Publication Publication Date Title
US10560511B2 (en) Adaptive tile framework
US10817335B2 (en) System and method of schedule validation and optimization of machine learning flows for cloud computing
CN105740078B (en) Memory management method, device and terminal
CN105094617A (en) Screen capturing method and device
CN103645950A (en) Computer acceleration method and device
KR20150021990A (en) Method and terminal for creating folder on user interface
CN107783833A (en) A kind of management method and device of terminal background application
CN107807847A (en) The management method and terminal device of application process
US10266370B2 (en) Systems and methods for automatic rendering of walking path maps for elevator car assignment display
CN104156208A (en) Method and device for operating controls in terminals on basis of remote-control device
CN109618174A (en) A kind of live data transmission method, device, system and storage medium
CN110286768A (en) Dummy object display methods, terminal device and computer readable storage medium
CN106445309A (en) Display method and device of application download entry
CN102685679B (en) A kind of method for transmission processing, device and electronic equipment
CN108549534B (en) Graphical user interface redrawing method, terminal device and computer-readable storage medium
CN104462243A (en) Data verification combined ETL scheduling system and method
CN107844255B (en) Touch event response control method, intelligent device and storage device
CN109388589A (en) A kind of method, equipment and storage medium adjusting cache partitions ratio
CN115392332A (en) AI model deployment method, system and storage medium
US20170115866A1 (en) Method, device and terminal apparatus for recognizing multi-finger sliding gesture
CN105975306A (en) Application program starting management method and application program starting management apparatus for electronic device
CN109033545B (en) Method for quickly generating pixel layout according to definition of pixel array
CN104007837A (en) Keyboard input method of control system display control terminal
CN110543994A (en) Information processing method and device, readable storage medium and electronic equipment
CN110333804A (en) The response method of textures, device, terminal device and storage medium in game system

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant