CN106776057B - Event processing method and device - Google Patents
Event processing method and device Download PDFInfo
- Publication number
- CN106776057B CN106776057B CN201611036345.8A CN201611036345A CN106776057B CN 106776057 B CN106776057 B CN 106776057B CN 201611036345 A CN201611036345 A CN 201611036345A CN 106776057 B CN106776057 B CN 106776057B
- Authority
- CN
- China
- Prior art keywords
- voice
- client
- key event
- application program
- socket server
- 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
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/46—Multiprogramming arrangements
- G06F9/54—Interprogram communication
- G06F9/544—Buffers; Shared memory; Pipes
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/46—Multiprogramming arrangements
- G06F9/54—Interprogram communication
- G06F9/545—Interprogram communication where tasks reside in different layers, e.g. user- and kernel-space
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F2209/00—Indexing scheme relating to G06F9/00
- G06F2209/54—Indexing scheme relating to G06F9/54
- G06F2209/541—Client-server
Landscapes
- Engineering & Computer Science (AREA)
- Software Systems (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Stored Programmes (AREA)
- Telephonic Communication Services (AREA)
Abstract
The invention relates to an event processing method and device, wherein the method comprises the following steps: creating a socket server; after receiving a connection request sent by a client of a voice application program, establishing connection between the client of the voice application program and the socket server; monitoring whether the terminal receives a voice key event; and after monitoring that the terminal receives the voice key event, sending the voice key event to the client of the voice application program through the socket server so that the client of the voice application program executes corresponding processing operation according to the voice key event. Through the technical scheme, the problem that the voice key event processing is time-consuming can be reduced, and therefore the use experience of a user is improved.
Description
Technical Field
The present invention relates to the field of terminal technologies, and in particular, to an event processing method and apparatus.
Background
At present, a terminal cannot realize application of monitoring a voice key through overloading a monitoring key interface of an android, but monitors the key through modes of cutting off a voice key event at a frame layer of an android mechanism and then sending other broadcasts or starting services and the like, so that time is consumed from the voice key to application response.
Disclosure of Invention
The embodiment of the invention provides an event processing method and device, which are used for reducing the problem that the time is consumed for processing a voice key event, so that the use experience of a user is improved.
According to a first aspect of the embodiments of the present invention, there is provided an event processing method for a terminal, including:
creating a socket server;
after receiving a connection request sent by a client of a voice application program, establishing connection between the client of the voice application program and the socket server;
monitoring whether the terminal receives a voice key event;
and after monitoring that the terminal receives the voice key event, sending the voice key event to the client of the voice application program through the socket server so that the client of the voice application program executes corresponding processing operation according to the voice key event.
In the embodiment, a socket server is created in the terminal, and a connection is established between the client of the voice application program and the socket server, so that after the voice key event is monitored, the voice key event is directly sent to the client of the voice application program through the socket server, and therefore the application layer can directly obtain the voice key event, and further fast response is achieved without an android mechanism, and the time consumption of response is shortened.
In one embodiment, after creating the socket server, the method further comprises:
detecting whether a client of the voice application program is started;
and when detecting that the client of the voice application program is started, controlling the client of the voice application program to send the connection request.
In this embodiment, after detecting that the client of the voice application program is started, the connection request may be sent to the socket server, so as to establish a connection with the socket server, which facilitates instant data transmission when receiving a voice key event.
In one embodiment, the monitoring whether the terminal receives the voice key event includes:
and monitoring whether the terminal receives a voice key event or not through an inotify mechanism of a linux operating system.
Inotify is a Linux feature that monitors file system operations such as read, write, and create. Inotify is sensitive, very simple to use, and much more efficient than the busy polling of cron tasks.
In one embodiment, the sending the voice key event to the client of the voice application through the socket server after the terminal receives the voice key event is monitored, where the sending the voice key event to the client of the voice application includes:
and after monitoring that the terminal receives the voice key event, sending the voice key event to a client of the voice application program through the socket server according to the identifier in the connection request.
In this embodiment, in order to facilitate the transmission of the voice key event, an identifier may be included in the connection request, and the identifier may be recorded, so that when the transmission of the voice key event is performed, the voice key event is sent to the client of the voice application according to the identifier.
According to a second aspect of the embodiments of the present invention, there is provided an event processing method for a client of a voice application, including:
after the client of the voice application program is started, sending a connection request to a terminal so that the terminal establishes connection between the client of the voice application program and a socket server of the terminal according to the connection request;
and receiving the voice key event sent by the socket server, and executing the processing operation corresponding to the voice key event.
In the embodiment, a socket server is created in the terminal, and a connection is established between the client of the voice application program and the socket server, so that after the voice key event is monitored, the voice key event is directly sent to the client of the voice application program through the socket server, and therefore the application layer can directly obtain the voice key event, and further fast response is achieved without an android mechanism, and the time consumption of response is shortened.
According to a third aspect of the embodiments of the present invention, there is provided an event processing apparatus for a terminal, including:
the creating module is used for creating a socket server;
the connection module is used for establishing connection between the client side of the voice application program and the socket server side after receiving a connection request sent by the client side of the voice application program;
the monitoring module is used for monitoring whether the terminal receives a voice key event;
and the first sending module is used for sending the voice key event to the client of the voice application program through the socket server after monitoring that the terminal receives the voice key event, so that the client of the voice application program executes corresponding processing operation according to the voice key event.
In one embodiment, the apparatus further comprises:
the detection module is used for detecting whether the client of the voice application program is started or not after the socket server is established;
and the control module is used for controlling the client side of the voice application program to send the connection request after detecting that the client side of the voice application program is started.
In one embodiment, the listening module is configured to:
and monitoring whether the terminal receives a voice key event or not through an inotify mechanism of a linux operating system.
In one embodiment, the connection request includes an identification of a client of the voice application, and the first sending module is configured to:
and after monitoring that the terminal receives the voice key event, sending the voice key event to a client of the voice application program through the socket server according to the identifier in the connection request.
According to a fourth aspect of the embodiments of the present invention, there is provided an event processing apparatus for a client of a voice application, including:
the second sending module is used for sending a connection request to the terminal after the client of the voice application program is started, so that the terminal establishes connection between the client of the voice application program and a socket server of the terminal according to the connection request;
and the execution module is used for receiving the voice key event sent by the socket server and executing the processing operation corresponding to the voice key event.
It is to be understood that both the foregoing general description and the following detailed description are exemplary and explanatory only and are not restrictive of the invention, as claimed.
Additional features and advantages of the invention will be set forth in the description which follows, and in part will be obvious from the description, or may be learned by practice of the invention. The objectives and other advantages of the invention will be realized and attained by the structure particularly pointed out in the written description and claims hereof as well as the appended drawings.
The technical solution of the present invention is further described in detail by the accompanying drawings and embodiments.
Drawings
The accompanying drawings, which are incorporated in and constitute a part of this specification, illustrate embodiments consistent with the invention and together with the description, serve to explain the principles of the invention.
FIG. 1 is a flow diagram illustrating a method of event processing according to an example embodiment.
FIG. 2 is a flow diagram illustrating another method of event processing according to an example embodiment.
Fig. 3 is a flowchart illustrating a step S103 in an event processing method according to an exemplary embodiment.
Fig. 4 is a flowchart illustrating a step S103 in an event processing method according to an exemplary embodiment.
FIG. 5 is a flow diagram illustrating a method of event processing in accordance with an exemplary embodiment.
FIG. 6 is a block diagram illustrating an event processing device according to an example embodiment.
FIG. 7 is a block diagram illustrating another event processing device according to an example embodiment.
FIG. 8 is a block diagram illustrating an event processing device according to an example embodiment.
Detailed Description
Reference will now be made in detail to the exemplary embodiments, examples of which are illustrated in the accompanying drawings. When the following description refers to the accompanying drawings, like numbers in different drawings represent the same or similar elements unless otherwise indicated. The embodiments described in the following exemplary embodiments do not represent all embodiments consistent with the present invention. Rather, they are merely examples of apparatus and methods consistent with certain aspects of the invention, as detailed in the appended claims.
FIG. 1 is a flow diagram illustrating a method of event processing according to an example embodiment. The event processing method is applied to terminal equipment which can be any equipment with an android operating system, such as a mobile phone, a computer, a digital broadcast terminal, a message transceiver, a game console, a tablet device, a medical device, a fitness device, a personal digital assistant and the like. As shown in fig. 1, the method comprises steps S101-S104:
in step S101, a socket server is created;
in step S102, after receiving a connection request sent by the client of the voice application, establishing a connection between the client of the voice application and the socket server;
in step S103, monitoring whether the terminal receives a voice key event;
in step S104, after it is monitored that the terminal receives the voice key event, the socket server sends the voice key event to the client of the voice application, so that the client of the voice application executes a corresponding processing operation according to the voice key event.
In the embodiment, a socket server is created in the terminal, and a connection is established between the client of the voice application program and the socket server, so that after the voice key event is monitored, the voice key event is directly sent to the client of the voice application program through the socket server, and therefore the application layer can directly obtain the voice key event, and further fast response is achieved without an android mechanism, and the time consumption of response is shortened.
FIG. 2 is a flow diagram illustrating another method of event processing according to an example embodiment.
As shown in fig. 2, in one embodiment, after the above step S101, the method further comprises steps S201-S202:
in step S201, detecting whether a client of a voice application is started;
in step S202, after detecting that the client of the voice application is started, the client of the voice application is controlled to send a connection request.
In this embodiment, after detecting that the client of the voice application program is started, the connection request may be sent to the socket server, so as to establish a connection with the socket server, which facilitates instant data transmission when receiving a voice key event.
Fig. 3 is a flowchart illustrating a step S103 in an event processing method according to an exemplary embodiment.
As shown in fig. 3, in one embodiment, the step S103 includes the step S301:
in step S301, whether the terminal receives a voice key event is monitored through an inotify mechanism of the linux operating system.
Inotify is a Linux feature that monitors file system operations such as read, write, and create. Inotify is sensitive, very simple to use, and much more efficient than the busy polling of cron tasks.
Fig. 4 is a flowchart illustrating a step S103 in an event processing method according to an exemplary embodiment.
As shown in fig. 4, in an embodiment, the connection request includes an identifier of a client of the voice application, and the step S104 includes a step S401:
in step S401, after it is monitored that the terminal receives the voice key event, the voice key event is sent to the client of the voice application program through the socket server according to the identifier in the connection request.
In this embodiment, in order to facilitate the transmission of the voice key event, an identifier may be included in the connection request, and the identifier may be recorded, so that when the transmission of the voice key event is performed, the voice key event is sent to the client of the voice application according to the identifier.
FIG. 5 is a flow diagram illustrating a method of event processing in accordance with an exemplary embodiment. The event processing method is applied to a client of a voice application program. As shown in fig. 5, the method includes steps S501-S502:
in step S501, after the client of the voice application is started, a connection request is sent to the terminal, so that the terminal establishes a connection between the client of the voice application and a socket server of the terminal according to the connection request;
in step S502, a voice key event sent by the socket server is received, and a processing operation corresponding to the voice key event is executed.
In the embodiment, a socket server is created in the terminal, and a connection is established between the client of the voice application program and the socket server, so that after the voice key event is monitored, the voice key event is directly sent to the client of the voice application program through the socket server, and therefore the application layer can directly obtain the voice key event, and further fast response is achieved without an android mechanism, and the time consumption of response is shortened.
The following are embodiments of the apparatus of the present invention that may be used to perform embodiments of the method of the present invention.
Fig. 6 is a block diagram illustrating an event processing apparatus, which may be implemented as part or all of a terminal device by software, hardware, or a combination of both, according to an example embodiment. As shown in fig. 6, the event processing apparatus includes:
a creating module 61, configured to create a socket server;
the connection module 62 is configured to establish connection between the client of the voice application program and the socket server after receiving a connection request sent by the client of the voice application program;
a monitoring module 63, configured to monitor whether the terminal receives a voice key event;
the first sending module 64 is configured to send the voice key event to the client of the voice application program through the socket server after monitoring that the terminal receives the voice key event, so that the client of the voice application program executes a corresponding processing operation according to the voice key event.
In the embodiment, a socket server is created in the terminal, and a connection is established between the client of the voice application program and the socket server, so that after the voice key event is monitored, the voice key event is directly sent to the client of the voice application program through the socket server, and therefore the application layer can directly obtain the voice key event, and further fast response is achieved without an android mechanism, and the time consumption of response is shortened.
FIG. 7 is a block diagram illustrating another event processing device according to an example embodiment.
As shown in fig. 7, in one embodiment, the apparatus further comprises:
a detection module 71, configured to detect whether a client of the voice application is started after the socket server is created;
the control module 72 is configured to control the client of the voice application to send the connection request after detecting that the client of the voice application is started.
In this embodiment, after detecting that the client of the voice application program is started, the connection request may be sent to the socket server, so as to establish a connection with the socket server, which facilitates instant data transmission when receiving a voice key event.
In one embodiment, the listening module 63 is configured to:
and monitoring whether the terminal receives a voice key event or not through an inotify mechanism of a linux operating system.
In one embodiment, the connection request includes an identification of a client of the voice application, and the first sending module 64 is configured to:
and after monitoring that the terminal receives the voice key event, sending the voice key event to a client of the voice application program through the socket server according to the identifier in the connection request.
In this embodiment, in order to facilitate the transmission of the voice key event, an identifier may be included in the connection request, and the identifier may be recorded, so that when the transmission of the voice key event is performed, the voice key event is sent to the client of the voice application according to the identifier.
FIG. 8 is a block diagram illustrating an event processing device that may be implemented in software, hardware, or a combination of both, as part or all of a client of a voice application, according to an example embodiment. As shown in fig. 8, the event processing apparatus includes:
the second sending module 81 is configured to send a connection request to a terminal after the client of the voice application is started, so that the terminal establishes a connection between the client of the voice application and a socket server of the terminal according to the connection request;
and the execution module 82 is configured to receive the voice key event sent by the socket server, and execute a processing operation corresponding to the voice key event.
In the embodiment, a socket server is created in the terminal, and a connection is established between the client of the voice application program and the socket server, so that after the voice key event is monitored, the voice key event is directly sent to the client of the voice application program through the socket server, and therefore the application layer can directly obtain the voice key event, and further fast response is achieved without an android mechanism, and the time consumption of response is shortened.
The process of the present invention is described in detail below with a specific example.
A, a linux inotify mechanism monitors key events:
creating a socket service:
c, starting an executable program for key monitoring when the system is started, and configuring a socket:
rc adds the following code:
and D, the upper layer application only needs to communicate through socket:
as will be appreciated by one skilled in the art, embodiments of the present invention may be provided as a method, system, or computer program product. Accordingly, the present invention may take the form of an entirely hardware embodiment, an entirely software embodiment or an embodiment combining software and hardware aspects. Furthermore, the present invention may take the form of a computer program product embodied on one or more computer-usable storage media (including, but not limited to, disk storage, optical storage, and the like) having computer-usable program code embodied therein.
The present invention is described with reference to flowchart illustrations and/or block diagrams of methods, apparatus (systems), and computer program products according to embodiments of the invention. It will be understood that each flow and/or block of the flow diagrams and/or block diagrams, and combinations of flows and/or blocks in the flow diagrams and/or block diagrams, can be implemented by computer program instructions. These computer program instructions may be provided to a processor of a general purpose computer, special purpose computer, embedded processor, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks.
These computer program instructions may also be stored in a computer-readable memory that can direct a computer or other programmable data processing apparatus to function in a particular manner, such that the instructions stored in the computer-readable memory produce an article of manufacture including instruction means which implement the function specified in the flowchart flow or flows and/or block diagram block or blocks.
These computer program instructions may also be loaded onto a computer or other programmable data processing apparatus to cause a series of operational steps to be performed on the computer or other programmable apparatus to produce a computer implemented process such that the instructions which execute on the computer or other programmable apparatus provide steps for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks.
It will be apparent to those skilled in the art that various changes and modifications may be made in the present invention without departing from the spirit and scope of the invention. Thus, if such modifications and variations of the present invention fall within the scope of the claims of the present invention and their equivalents, the present invention is also intended to include such modifications and variations.
Claims (10)
1. An event processing method for a terminal, comprising:
creating a socket server;
after receiving a connection request sent by a client of a voice application program after starting, establishing connection between the client of the voice application program and the socket server;
monitoring whether the terminal receives a voice key event;
and after monitoring that the terminal receives the voice key event, sending the voice key event to the client of the voice application program through the socket server, so that the client of the voice application program receives the voice key event sent by the socket server and executes corresponding processing operation according to the voice key event.
2. The method of claim 1, wherein after creating the socket server, the method further comprises:
detecting whether a client of the voice application program is started;
and when detecting that the client of the voice application program is started, controlling the client of the voice application program to send the connection request.
3. The method of claim 1, wherein the monitoring whether the terminal receives a voice key event comprises:
and monitoring whether the terminal receives a voice key event or not through an inotify mechanism of a linux operating system.
4. The method according to claim 1, wherein the connection request includes an identifier of a client of the voice application, and the sending of the voice key event to the client of the voice application through the socket server after the terminal receives the voice key event is monitored comprises:
and after monitoring that the terminal receives the voice key event, sending the voice key event to a client of the voice application program through the socket server according to the identifier in the connection request.
5. An event processing method for a client of a voice application, comprising:
after the client of the voice application program is started, sending a connection request to a terminal so that the terminal establishes connection between the client of the voice application program and a socket server of the terminal according to the connection request, monitoring whether the terminal receives a voice key event, and sending the voice key event to the client of the voice application program through the socket server after monitoring that the terminal receives the voice key event;
and receiving the voice key event sent by the socket server, and executing the processing operation corresponding to the voice key event.
6. An event processing apparatus for a terminal, comprising:
the creating module is used for creating a socket server;
the connection module is used for establishing connection between the client side of the voice application program and the socket server side after receiving a connection request sent by the client side of the voice application program after being started;
the monitoring module is used for monitoring whether the terminal receives a voice key event;
and the first sending module is used for sending the voice key event to the client of the voice application program through the socket server after monitoring that the terminal receives the voice key event, so that the client of the voice application program receives the voice key event sent by the socket server and executes corresponding processing operation according to the voice key event.
7. The apparatus of claim 6, further comprising:
the detection module is used for detecting whether the client of the voice application program is started or not after the socket server is established;
and the control module is used for controlling the client side of the voice application program to send the connection request after detecting that the client side of the voice application program is started.
8. The apparatus of claim 6, wherein the listening module is configured to:
and monitoring whether the terminal receives a voice key event or not through an inotify mechanism of a linux operating system.
9. The apparatus of claim 6, wherein the connection request includes an identification of a client of the voice application, and wherein the first sending module is configured to:
and after monitoring that the terminal receives the voice key event, sending the voice key event to a client of the voice application program through the socket server according to the identifier in the connection request.
10. An event processing apparatus for a client of a voice application, comprising:
the second sending module is used for sending a connection request to a terminal after the client of the voice application program is started, so that the terminal establishes connection between the client of the voice application program and a socket server of the terminal according to the connection request, monitors whether the terminal receives a voice key event or not, and sends the voice key event to the client of the voice application program through the socket server after the terminal receives the voice key event;
and the execution module is used for receiving the voice key event sent by the socket server and executing the processing operation corresponding to the voice key event.
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN201611036345.8A CN106776057B (en) | 2016-11-22 | 2016-11-22 | Event processing method and device |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN201611036345.8A CN106776057B (en) | 2016-11-22 | 2016-11-22 | Event processing method and device |
Publications (2)
Publication Number | Publication Date |
---|---|
CN106776057A CN106776057A (en) | 2017-05-31 |
CN106776057B true CN106776057B (en) | 2020-04-17 |
Family
ID=58971922
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
CN201611036345.8A Active CN106776057B (en) | 2016-11-22 | 2016-11-22 | Event processing method and device |
Country Status (1)
Country | Link |
---|---|
CN (1) | CN106776057B (en) |
Families Citing this family (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN109104588B (en) * | 2018-07-24 | 2020-01-14 | 房梦琦 | Video monitoring method, equipment, terminal and computer storage medium |
Family Cites Families (7)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
EP1272930B1 (en) * | 2000-04-08 | 2015-05-20 | Oracle America, Inc. | Method and apparatus for handling events received at a server socket |
CN103139157B (en) * | 2011-11-28 | 2016-07-27 | 北京南车时代信息技术有限公司 | A kind of based on the network communication method of socket, Apparatus and system |
KR102121472B1 (en) * | 2013-09-23 | 2020-06-17 | 삼성전자주식회사 | An apparatus and method for communication between application to application for each of devices |
CN104932965B (en) * | 2014-03-18 | 2019-05-28 | 北京奇虎科技有限公司 | Object method for real-time monitoring and device |
CN105468989B (en) * | 2014-09-04 | 2018-10-12 | 中国石油化工股份有限公司 | Cloud storage quota management method based on linux kernel monitoring |
CN105117270B (en) * | 2015-07-29 | 2019-04-12 | 百度在线网络技术(北京)有限公司 | A kind of method and apparatus for analog sensor |
CN105744471B (en) * | 2016-04-07 | 2019-04-16 | 北京资信物联科技有限公司 | The method and system of voice communication are carried out between Intelligent hardware and terminal |
-
2016
- 2016-11-22 CN CN201611036345.8A patent/CN106776057B/en active Active
Also Published As
Publication number | Publication date |
---|---|
CN106776057A (en) | 2017-05-31 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
CN109995877B (en) | Information pushing method and device | |
EP3142304B1 (en) | Synchronization method for notification message of electronic device, server and electronic device | |
CN111757305B (en) | Service execution terminal switching method, device, system and storage medium | |
EP2738998B1 (en) | Real-time sharing method, device and system | |
CN105260655B (en) | Method, device and system for starting protection of application program | |
CN106027631B (en) | Data transmission method and device | |
EP3472699B1 (en) | Method and electronic device for managing functionality of applications | |
CN110069919B (en) | Information acquisition method and device | |
CN107835984B (en) | Thermal mitigation user experience | |
CN106856490A (en) | A kind of method and apparatus that service is provided based on scene | |
CN112740638A (en) | Packet data unit (PDU) session control method and device | |
CN111143031A (en) | Method and device for changing capacity of virtual machine | |
CN111580769A (en) | Display control system, method, device, storage medium and processor | |
CN105335192B (en) | A kind of information processing method and electronic equipment | |
CN106776057B (en) | Event processing method and device | |
CN103516864B (en) | Monitor the method and apparatus of predetermined registration operation in the terminal | |
WO2017185454A1 (en) | Esim card binding processing method and apparatus, and terminal | |
CN105898596B (en) | Direct broadcasting room display control method and device | |
US7366505B2 (en) | Apparatus and method for delivering messages to a mobile information terminal | |
US9773248B2 (en) | Troubleshooting a problem with user equipment based on a location of a user | |
KR101284451B1 (en) | Method and System for Managing Security | |
CN110865823A (en) | Pre-installed application control method, pre-installed application control device and storage medium | |
CN107291322A (en) | A kind of information processing method and terminal | |
CN107395493B (en) | Method and device for sharing message based on intention | |
CN106230878B (en) | Equipment service calling method and device based on AllJoyn framework |
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 | ||
CP03 | Change of name, title or address |
Address after: Room 101, 1st floor, building 1, Xisanqi building materials City, Haidian District, Beijing 100096 Patentee after: Yunzhisheng Intelligent Technology Co.,Ltd. Address before: 100191 Beijing, Huayuan Road, Haidian District No. 2 peony technology building, 5 floor, A503 Patentee before: BEIJING UNISOUND INFORMATION TECHNOLOGY Co.,Ltd. |
|
CP03 | Change of name, title or address |