CN114115553A - Formatted input method and system based on android - Google Patents

Formatted input method and system based on android Download PDF

Info

Publication number
CN114115553A
CN114115553A CN202111373875.2A CN202111373875A CN114115553A CN 114115553 A CN114115553 A CN 114115553A CN 202111373875 A CN202111373875 A CN 202111373875A CN 114115553 A CN114115553 A CN 114115553A
Authority
CN
China
Prior art keywords
character string
formatted
input
user
character
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.)
Pending
Application number
CN202111373875.2A
Other languages
Chinese (zh)
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.)
Wuhan Hongxin Technology Service Co Ltd
Original Assignee
Wuhan Hongxin Technology Service 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 Wuhan Hongxin Technology Service Co Ltd filed Critical Wuhan Hongxin Technology Service Co Ltd
Priority to CN202111373875.2A priority Critical patent/CN114115553A/en
Publication of CN114115553A publication Critical patent/CN114115553A/en
Pending legal-status Critical Current

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/02Input arrangements using manually operated switches, e.g. using keyboards or dials
    • G06F3/023Arrangements for converting discrete items of information into a coded form, e.g. arrangements for interpreting keyboard generated codes as alphanumeric codes, operand codes or instruction codes
    • G06F3/0233Character input methods

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 provides a formatted input method and a formatted input system based on an android.A filter unit is used for acquiring an initial cursor position of a user to record input actions of the user; the method comprises the steps of presetting an insertion position parameter of each separator by setting the maximum display character number, the maximum input character number and the number of separators, and setting the positions of the separators in a character string, so that the self-definition of the separator format and the separators is realized, and a user can conveniently input long text information; and comparing the formatted character string with the verification character string through a text monitoring unit, and displaying the formatted character string if the formatted character string and the verification character string are the same, so that the formatting correctness is ensured.

Description

Formatted input method and system based on android
Technical Field
The invention relates to the technical field of android development tools, in particular to a formatting input method and a control based on an android.
Background
At present, for the development of Android App/SDK, the mainstream development tool is Android Studio, and the Android Studio provides an integrated Android development tool for development and debugging. In application development of an android platform, various character strings input by a user are required to be processed, and currently, input character information is generally displayed by using a TextView control.
However, the TextView control only has a simple display interface and a simple display effect, and only can display characters; when the other input controls input the paste text by the user, the formatting effect of the text is poor; when the character is long, the user is easy to have input errors and repeated proofreading during the input, the experience of inputting the character is crossed, and the use requirement of the user cannot be met.
Disclosure of Invention
The invention provides a formatted input method and a formatted input system based on android, which are used for overcoming the defects in the prior art.
The invention provides a formatted input method and a system based on android, which comprises the following steps:
acquiring an initial cursor position of a user;
setting the maximum display character number, the maximum input character number and the number of separators, wherein the sum of the maximum input character number and the number of separators is the maximum display character number; presetting an insertion position parameter of each separator, wherein the insertion position parameter is used for setting the position of the separator in a character string;
in the process of inputting characters by a user, filtering an initial character string input by the user through a filtering unit, determining the position of a termination cursor after the user adds or deletes the characters, adding the separator in the initial character string according to the insertion position parameter, and outputting a formatted character string;
and comparing the formatted character string with the initial character string through a text monitoring unit, and if the formatted character string and the initial character string are the same, displaying the formatted character string.
According to the android-based formatted input method provided by the embodiment of the invention, in the process of inputting an initial character string by a user, the initial character string is filtered by a filtering unit, and the method comprises the following steps:
acquiring the termination cursor position of the user;
and if the number of the characters between the termination cursor position and the initial cursor position is larger than the maximum display character number, judging that the input character string is invalid.
According to the android-based formatted input method provided by the embodiment of the invention, the initial character string is filtered through the filtering unit, and the position of a termination cursor after a user adds or deletes characters is determined, wherein the method comprises the following steps:
acquiring an input cursor position when the user inputs characters;
when the character input by the user is empty and the input cursor position is larger than the termination cursor position, judging that the user operation is character deletion;
when the length of the character input by the user is 1, if the input cursor position is smaller than the termination cursor position, judging that the user operation is a coverage character; if the input cursor position is equal to the termination cursor position, judging that the user operation is inserting characters;
and if the length of the character input by the user is more than 1, judging that the user operation is a paste character.
According to the android-based formatted input method provided by the embodiment of the invention, the formatted character string and the initial character string are compared through a text monitoring unit, and if the formatted character string and the initial character string are the same, the formatted character string is displayed, and the method comprises the following steps:
after the formatted character string is output by the filtering unit, removing separators in the formatted character string to obtain text information;
inserting the separator into the corresponding position in the text information according to the insertion position parameter of the separator, and re-separating the text information to obtain a verification formatted character string;
comparing the verification formatted character string with the formatted character string, and if the verification formatted character string and the formatted character string are the same, outputting the verification formatted character string; otherwise, the user is required to re-input the character string.
In another aspect, an embodiment of the present invention further provides an android-based formatted input system, including:
the configuration unit is used for setting the maximum display character number, the maximum input character number and the number of separators, and the sum of the maximum input character number and the number of separators is the maximum display character number; presetting an insertion position parameter of each separator, wherein the insertion position parameter is used for setting the position of the separator in a character string;
the filtering unit is used for acquiring an initial cursor position of a user; the system is used for filtering an initial character string input by a user in the process of inputting characters by the user, determining the position of a termination cursor after the user adds or deletes the characters, adding the separator in the initial character string according to the insertion position parameter and outputting a formatted character string;
and the text monitoring unit is used for comparing the formatted character string with the initial character string, and if the formatted character string and the initial character string are the same, displaying the formatted character string.
The invention also provides an android-based formatted input device, which comprises a memory, a processor and a computer program stored on the memory and capable of running on the processor, wherein the processor executes the program to realize the steps of any one of the methods.
The invention also provides a non-transitory computer readable storage medium having stored thereon a computer program which, when executed by a processor, performs the steps of any of the methods described above.
According to the android-based formatted input method and system, the initial cursor position of a user is obtained through the filter unit, the record of the input action of the user is realized, in the process of inputting characters by the user, the initial character string input by the user is filtered through the filter unit, the position of a termination cursor after the user adds or deletes the characters is determined, and the separator is added into the initial character string according to the insertion position parameter, so that the formatted character string is output; setting the maximum display character number, the maximum input character number and the number of separators, wherein the sum of the maximum input character number and the number of separators is the maximum display character number; presetting an insertion position parameter of each separator, wherein the insertion position parameter is used for setting the position of the separator in a character string, realizing the self-definition of the separator format and the separator, and facilitating the user to input long text information; and comparing the formatted character string with the initial character string through a text monitoring unit, and displaying the formatted character string if the formatted character string is the same as the initial character string, so that the formatting correctness is ensured.
Drawings
In order to more clearly illustrate the technical solutions of the present invention or the prior art, the drawings needed for the description of the embodiments or the prior art will be briefly described below, and it is obvious that the drawings in the following description are some embodiments of the present invention, and those skilled in the art can also obtain other drawings according to the drawings without creative efforts.
FIG. 1 is a schematic flow diagram of an android-based formatted input method provided by the present invention;
FIG. 2 is a schematic structural diagram of an android-based formatted input system provided by the present invention;
fig. 3 is a schematic structural diagram of an electronic device provided in the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the present invention clearer, the technical solutions of the present invention will be clearly and completely described below with reference to the accompanying drawings, and it is obvious that the described embodiments are some, but not all embodiments of the present invention. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
It should be noted that the method is realized through an Android integrated development tool; the filter unit is realized by an InputFilter filter tool and is used for filtering texts input by a user, receiving characters input by the user and returning corresponding characters required according to program functions; the text monitoring unit is realized by a textwatch text change monitor for monitoring the character change input by the user, and the monitor is activated to execute once the user performs an adding or deleting operation on the character.
It should be noted that the formatting input method provided by the present invention is built based on the basic functions of the development tools InputFilter and textwatch text change monitor, and independent algorithm logics need to be set based on the two tools, which should not be construed as limitations to the present invention;
in one embodiment, as shown in fig. 1, the formatted input method provided by the present invention comprises the steps of:
setting the maximum display character number, the maximum input character number and the number of separators, wherein the sum of the maximum input character number and the number of separators is the maximum display character number; presetting an insertion position parameter of each separator, wherein the insertion position parameter is used for setting the position of the separator in a character string;
optionally, two attributes can be added through the custom attribute function of the android, so that a developer can specify a separation mode and a separator when using the formatting input method provided by the invention;
optionally, the format of the separation mode is set as a plurality of numbers, and the numbers are separated by commas; the separating symbol is a single symbol, which may be "-", may also be ", and may also be" ^ ", and the invention is not limited to this;
optionally, taking a mobile phone number as an example, the separation mode of numbers may be in a form of 3-4-4, or in a form of 4-4-3, and the separation mode may be set by self-definition according to the preference and actual needs of a developer, which is not limited in the present invention; the method provided by the invention is also suitable for the input formatting of long texts such as bank card numbers, identity card numbers, social security card numbers, driver license numbers and the like, and the method is not limited by the invention;
specifically, when the separation mode is set to be 3, 4, 4 (mobile phone number formatting), and the separation symbol is "-", the following parameters are generated through the two data:
maximum number of displayed characters: the 11-bit number plus two separators, for a total of 13 bits.
Spacer insertion position: a separator is inserted after the 3 rd bit character and the 7 th bit character in the 11-bit number;
key positions: when the separator is added or deleted, one more bit needs to be moved to get over the separator, and the key positions of the separator are the 4 th and 9 th bits of the 13 th bits.
Further, acquiring an initial cursor position of a user;
in the process of inputting characters by a user, filtering an initial character string input by the user through a filtering unit, determining the position of a termination cursor after the user adds or deletes the characters, adding the separator in the initial character string according to the insertion position parameter, and outputting a formatted character string;
specifically, the method comprises the following steps:
the method comprises the following steps of obtaining characters input by a user through a filter InputFilter, obtaining starting positions and ending positions, and judging the operation type executed by the user through the characters:
if the character is empty, deleting the character, otherwise, recording the character; if the starting position is smaller than the ending position, the character is covered, and if the starting position and the ending position are equal, the character is inserted; if the character length is more than 1, the character is a paste character;
if the user does not belong to any one of the situations, judging the operation of the user as normal input;
preferably, in order to realize the functions of the control, the user input needs to be limited: the number of input characters plus the number of existing characters must not exceed the maximum number of displayed characters; if the user inputs the symbol which is the same as the separator, the input character is judged to be invalid;
further, after judging whether the operation of the user is to add characters or delete characters, determining the real-time position of a character input cursor after the user performs the operation;
further, if the character string input by the user does not meet the requirement, judging that the character string input by the user is invalid; recording user operation and real-time cursor position through data acquired by an InputFilter, and if the input characters do not accord with the filtering requirement of the filter, invalidating the user input without executing the subsequent listener step;
optionally, after the filter determines that the input of the user is invalid, prompting the user to execute the input operation again;
further, comparing the formatted character string with the initial character string through a text monitoring unit, and if the formatted character string and the initial character string are the same, displaying the formatted character string;
specifically, if the logic in the filter executes correctly, the text change monitor textwatch is triggered by the program running continuously;
further, firstly, reading the content in the text box operated by the user (for example, 133-; thereby avoiding dead cycles caused by user input → text change → trigger textwatch → return formatted characters to text box → text change → trigger textwatch.
Preferably, if the cursor is located near the position where the separator is inserted, for example, the user enters 133 and 44445| -555 in the above example, if the cursor is located after the first 5, the cursor is located after the 9 th character, and the cursor is matched with the generated parameters 4 and 9, and since the cursor is an operation of adding characters, the cursor position is added by 1 and is located at the 10 th character, and the result is 133 and 4444-5|555, and the cursor is still located after the character is formatted and the first 5 is located; this completes the input formatting once.
The present invention further provides an android-based formatted input system, which may be mutually referred to and correspond to the above-described android-based formatted input method, as shown in fig. 2, and specifically includes:
the configuration unit is used for setting the maximum display character number, the maximum input character number and the number of separators, and the sum of the maximum input character number and the number of separators is the maximum display character number; presetting an insertion position parameter of each separator, wherein the insertion position parameter is used for setting the position of the separator in a character string;
the filtering unit is used for acquiring an initial cursor position of a user; the system is used for filtering an initial character string input by a user in the process of inputting characters by the user, determining the position of a termination cursor after the user adds or deletes the characters, adding the separator in the initial character string according to the insertion position parameter and outputting a formatted character string;
and the text monitoring unit is used for comparing the formatted character string with the initial character string, and if the formatted character string and the initial character string are the same, displaying the formatted character string.
Fig. 3 illustrates a physical structure diagram of an electronic device, which may include, as shown in fig. 3: a processor (processor)310, a communication interface (communication interface)320, a memory (memory)330 and a communication bus 340, wherein the processor 310, the communication interface 320 and the memory 330 communicate with each other via the communication bus 340. The processor 310 may call logic instructions in the memory 330 to perform the above-described method, including: acquiring an initial cursor position of a user; setting the maximum display character number, the maximum input character number and the number of separators, wherein the sum of the maximum input character number and the number of separators is the maximum display character number; presetting an insertion position parameter of each separator, wherein the insertion position parameter is used for setting the position of the separator in a character string; in the process of inputting characters by a user, filtering an initial character string input by the user through a filtering unit, determining the position of a termination cursor after the user adds or deletes the characters, adding the separator in the initial character string according to the insertion position parameter, and outputting a formatted character string; and comparing the formatted character string with the initial character string through a text monitoring unit, and if the formatted character string and the initial character string are the same, displaying the formatted character string.
In addition, the logic instructions in the memory 330 may be implemented in the form of software functional units and stored in a computer readable storage medium when the software functional units are sold or used as independent products. Based on such understanding, the technical solution of the present invention may be embodied in the form of a software product, which is stored in a storage medium and includes instructions for causing a computer device (which may be a personal computer, a server, or a network device) to execute all or part of the steps of the method according to the embodiments of the present invention. And the aforementioned storage medium includes: various media capable of storing program codes, such as a usb disk, a removable hard disk, a Read-only memory (ROM), a Random Access Memory (RAM), a magnetic disk, or an optical disk.
In another aspect, the present invention also provides a computer program product comprising a computer program stored on a non-transitory computer readable storage medium, the computer program comprising program instructions which, when executed by a computer, enable the computer to perform the method described above, including: acquiring an initial cursor position of a user; setting the maximum display character number, the maximum input character number and the number of separators, wherein the sum of the maximum input character number and the number of separators is the maximum display character number; presetting an insertion position parameter of each separator, wherein the insertion position parameter is used for setting the position of the separator in a character string; in the process of inputting characters by a user, filtering an initial character string input by the user through a filtering unit, determining the position of a termination cursor after the user adds or deletes the characters, adding the separator in the initial character string according to the insertion position parameter, and outputting a formatted character string; and comparing the formatted character string with the initial character string through a text monitoring unit, and if the formatted character string and the initial character string are the same, displaying the formatted character string.
In yet another aspect, the present invention also provides a non-transitory computer readable storage medium having stored thereon a computer program which, when executed by a processor, is implemented to perform the method described above, comprising: acquiring an initial cursor position of a user; setting the maximum display character number, the maximum input character number and the number of separators, wherein the sum of the maximum input character number and the number of separators is the maximum display character number; presetting an insertion position parameter of each separator, wherein the insertion position parameter is used for setting the position of the separator in a character string; in the process of inputting characters by a user, filtering an initial character string input by the user through a filtering unit, determining the position of a termination cursor after the user adds or deletes the characters, adding the separator in the initial character string according to the insertion position parameter, and outputting a formatted character string; and comparing the formatted character string with the initial character string through a text monitoring unit, and if the formatted character string and the initial character string are the same, displaying the formatted character string.
The above-described embodiments of the apparatus are merely illustrative, and the units described as separate parts may or may not be physically separate, and parts displayed as units may or may not be physical units, may be located in one place, or may be distributed on a plurality of network units. Some or all of the modules may be selected according to actual needs to achieve the purpose of the solution of the present embodiment. One of ordinary skill in the art can understand and implement it without inventive effort.
Through the above description of the embodiments, those skilled in the art will clearly understand that each embodiment can be implemented by software plus a necessary general hardware platform, and certainly can also be implemented by hardware. With this understanding in mind, the above-described technical solutions may be embodied in the form of a software product, which can be stored in a computer-readable storage medium such as ROM/RAM, magnetic disk, optical disk, etc., and includes instructions for causing a computer device (which may be a personal computer, a server, or a network device, etc.) to execute the methods described in the embodiments or some parts of the embodiments.
Finally, it should be noted that: the above examples are only intended to illustrate the technical solution of the present invention, but not to limit it; although the present invention has been described in detail with reference to the foregoing embodiments, it will be understood by those of ordinary skill in the art that: the technical solutions described in the foregoing embodiments may still be modified, or some technical features may be equivalently replaced; and such modifications or substitutions do not depart from the spirit and scope of the corresponding technical solutions of the embodiments of the present invention.

Claims (7)

1. An android-based formatted input method, comprising:
setting the maximum display character number, the maximum input character number and the number of separators, wherein the sum of the maximum input character number and the number of separators is the maximum display character number; presetting an insertion position parameter of each separator, wherein the insertion position parameter is used for setting the position of the separator in a character string;
acquiring an initial cursor position of a user;
in the process of inputting characters by a user, filtering an initial character string input by the user through a filtering unit, determining the position of a termination cursor after the user adds or deletes the characters, adding the separator in the initial character string according to the insertion position parameter, and outputting a formatted character string;
and checking the formatted character string through a text monitoring unit.
2. The android-based formatted input method of claim 1, wherein in the process of inputting an initial character string by a user, the filtering of the initial character string by a filtering unit comprises:
acquiring the termination cursor position of the user;
and if the number of the characters between the termination cursor position and the initial cursor position is larger than the maximum display character number, judging that the input character string is invalid.
3. The android-based formatted input method of claim 2, wherein the step of determining a termination cursor position after a user adds or deletes a character by filtering the initial character string through a filtering unit comprises:
acquiring an input cursor position when the user inputs characters;
when the character input by the user is empty and the input cursor position is larger than the termination cursor position, judging that the user operation is character deletion;
when the length of the character input by the user is 1, if the input cursor position is smaller than the termination cursor position, judging that the user operation is a coverage character; if the input cursor position is equal to the termination cursor position, judging that the user operation is inserting characters;
and if the length of the character input by the user is more than 1, judging that the user operation is a paste character.
4. The android-based formatted input method of claim 3, wherein the formatted character string and the initial character string are compared by a text listening unit, and if the two are the same, the formatted character string is displayed, comprising:
after the formatted character string is output by the filtering unit, removing separators in the formatted character string to obtain text information;
inserting the separator into the corresponding position in the text information according to the insertion position parameter of the separator, and re-separating the text information to obtain a verification formatted character string;
comparing the verification formatted character string with the formatted character string through a text monitoring unit, and if the verification formatted character string and the formatted character string are the same, outputting the verification formatted character string; otherwise, the user is required to re-input the character string.
5. An android-based formatted input system, comprising:
the configuration unit is used for setting the maximum display character number, the maximum input character number and the number of separators, and the sum of the maximum input character number and the number of separators is the maximum display character number; presetting an insertion position parameter of each separator, wherein the insertion position parameter is used for setting the position of the separator in a character string;
the filtering unit is used for acquiring an initial cursor position of a user; the system is used for filtering an initial character string input by a user in the process of inputting characters by the user, determining the position of a termination cursor after the user adds or deletes the characters, adding the separator in the initial character string according to the insertion position parameter and outputting a formatted character string;
and the text monitoring unit is used for checking the formatted character string.
6. An android based formatted input device comprising a memory, a processor and a computer program stored on said memory and executable on said processor, characterized in that said processor, when executing said program, implements the steps of the method according to any one of claims 1 to 4.
7. A non-transitory computer-readable storage medium, on which a computer program is stored, which, when being executed by a processor, carries out the steps of the method according to any one of claims 1 to 4.
CN202111373875.2A 2021-11-19 2021-11-19 Formatted input method and system based on android Pending CN114115553A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202111373875.2A CN114115553A (en) 2021-11-19 2021-11-19 Formatted input method and system based on android

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202111373875.2A CN114115553A (en) 2021-11-19 2021-11-19 Formatted input method and system based on android

Publications (1)

Publication Number Publication Date
CN114115553A true CN114115553A (en) 2022-03-01

Family

ID=80397896

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202111373875.2A Pending CN114115553A (en) 2021-11-19 2021-11-19 Formatted input method and system based on android

Country Status (1)

Country Link
CN (1) CN114115553A (en)

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7616666B1 (en) * 2002-12-09 2009-11-10 Sprint Communications Company L.P. Method and system for customizing update-string processing in network elements
CN103197893A (en) * 2012-12-07 2013-07-10 杭州斯凯网络科技有限公司 Method for reminding user whether current input information is wrong or not in Android system
CN105912311A (en) * 2015-12-11 2016-08-31 乐视移动智能信息技术(北京)有限公司 Method and device for intuitively prompting payment amount
CN110099070A (en) * 2019-05-20 2019-08-06 黄超 A kind of single input frame login validation method and device

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7616666B1 (en) * 2002-12-09 2009-11-10 Sprint Communications Company L.P. Method and system for customizing update-string processing in network elements
CN103197893A (en) * 2012-12-07 2013-07-10 杭州斯凯网络科技有限公司 Method for reminding user whether current input information is wrong or not in Android system
CN105912311A (en) * 2015-12-11 2016-08-31 乐视移动智能信息技术(北京)有限公司 Method and device for intuitively prompting payment amount
CN110099070A (en) * 2019-05-20 2019-08-06 黄超 A kind of single input frame login validation method and device

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
MRTRYING: ""Android EditText输入手机号自带分隔符"", 《HTTPS://WWW.JIANSHU.COM/P/74B45215D864》, 20 July 2019 (2019-07-20), pages 1 - 5 *
红色有角: ""android手机号分段_Android EditText输入手机号自带分隔符"", 《HTTPS://BLOG.CSDN.NET/WEIXIN_34596480/ARTICLE/DETAILS/113373063》, 26 January 2021 (2021-01-26), pages 1 - 7 *

Similar Documents

Publication Publication Date Title
CN109033282B (en) Webpage text extraction method and device based on extraction template
US20170083495A1 (en) Method for Modifying Webpage and Apparatus for Modifying Webpage
WO2017032265A1 (en) Application push method and apparatus, and a serving device
KR20160058587A (en) Display apparatus and method for summarizing of document
CN104516921B (en) Automatic reply method and device
CN109614045B (en) Metadata dropping method and device and related equipment
CN107741935B (en) Data importing method and data importing device
CN102902766B (en) Method and device for detecting words
CN116402022A (en) Document generation method, device, electronic equipment and storage medium
JP7309811B2 (en) Data annotation method, apparatus, electronics and storage medium
CN108923967B (en) Duplication-removing flow recording method, duplication-removing flow recording device, server and storage medium
CN107329756B (en) Program file generation method and device, storage medium, processor and terminal
CN113031944B (en) Business opening device and method based on template
CN114115553A (en) Formatted input method and system based on android
CN115410235A (en) Fingerprint input method and device, storage medium and terminal
CN115311073A (en) Mobile phone bank page layout setting method and device
CN108228573A (en) Text emotion analysis method, device and electronic equipment
CN110263303B (en) Method and device for tracing text modification history
CN103631789A (en) Document processing method and device
CN113485782A (en) Page data acquisition method and device, electronic equipment and medium
CN107193581B (en) Firmware upgrading method and device, storage medium and computer equipment
CN110298935B (en) Method for acquiring user operation habit information, diagnosis equipment and server
CN111126052B (en) Function point generation method, device, electronic equipment and computer readable storage medium
CN114741315B (en) Use case updating method and device, electronic equipment and storage medium
CN113238742B (en) Direct current control page protection program modification playback method, device, terminal and medium

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