WO2019052115A1 - 应用控件样式自定义方法、装置以及计算机可读存储介质 - Google Patents
应用控件样式自定义方法、装置以及计算机可读存储介质 Download PDFInfo
- Publication number
- WO2019052115A1 WO2019052115A1 PCT/CN2018/075111 CN2018075111W WO2019052115A1 WO 2019052115 A1 WO2019052115 A1 WO 2019052115A1 CN 2018075111 W CN2018075111 W CN 2018075111W WO 2019052115 A1 WO2019052115 A1 WO 2019052115A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- control
- style
- parameter
- customization
- custom
- Prior art date
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/30—Creation or generation of source code
- G06F8/38—Creation or generation of source code for implementing user interfaces
Definitions
- the present application relates to the field of computer technologies, and in particular, to an application control style customization method, apparatus, and computer readable storage medium.
- the interface design of the App product often determines the user's first impression of the product. In the past few years, the interface design method has changed less and less visually.
- the style design of the control is one of the most concerned design elements, which largely determines the user's desire to click.
- the appearance of the control (such as the position of the text on the control, the position of the image) is a decisive factor in the design of the control.
- a control often sees the function of the control from the appearance.
- the appearance of the control will affect the user's preference for the APP product to a certain extent, although the developer can customize the desired style, but for an APP project, if each control is customized and rewritten, it is for development. The workload will be quite large.
- the embodiment of the present application provides an application control style customization method, a device, and a computer readable storage medium, which can reduce the workload of the developer on the custom control, enhance the user's desire to click the control and the user to select the APP product, and enhance the user's desire. Use experience.
- the embodiment of the present application provides a method for applying a control style customization, the method comprising:
- the first parameter and the second parameter are set to implement customization of a text position and a picture position of the control.
- the embodiment of the present application further provides an application control style customization device, where the device includes:
- a first acquiring unit configured to acquire the first parameter and the second parameter
- the first setting unit is configured to set the first parameter and the second parameter to implement customization of a text position and a picture position of the control.
- the embodiment of the present application further provides an application control style customization device, including:
- a memory for storing programs that implement application control style customization
- a processor configured to execute a program stored in the memory that implements an application control style customization to perform the following operations:
- the first parameter and the second parameter are set to implement customization of a text position and a picture position of the control.
- an embodiment of the present application further provides a computer readable storage medium storing one or more programs, the one or more programs being executable by one or more processors Execute to implement the following steps:
- the first parameter and the second parameter are set to implement customization of a text position and a picture position of the control.
- the embodiment of the present application constructs a control method according to the control by inheriting a control in a system visualization control class, where the control method includes at least a first parameter and a second parameter, and acquires a first parameter and a second parameter of the control method.
- Parameter setting the first parameter and the second parameter to realize the customization of the text position and the picture position of the control, can reduce the developer's workload on the custom control, enhance the user's desire to click the control and the user to select the APP product, and Improve the user experience.
- FIG. 1 is a schematic flow chart of a method for customizing an application control style provided by an embodiment of the present application
- FIG. 2 is another schematic flowchart of an application control style customization method provided by an embodiment of the present application.
- FIG. 3 is a schematic flowchart of a method for customizing an application control style according to another embodiment of the present application.
- FIG. 4 is a schematic flowchart of a method for customizing an application control style according to another embodiment of the present application.
- FIG. 5 is a schematic block diagram of an application control style customization apparatus according to an embodiment of the present application.
- FIG. 6 is another schematic block diagram of an application control style customization apparatus according to an embodiment of the present application.
- FIG. 7 is another schematic block diagram of an application control style customization apparatus according to an embodiment of the present application.
- FIG. 8 is another schematic block diagram of an application control style customization apparatus according to an embodiment of the present application.
- FIG. 9 is a schematic structural diagram of a structure of an application control style customization device according to an embodiment of the present application.
- FIG. 1 is a schematic flowchart of a method for customizing an application control style according to an embodiment of the present application.
- the method can be run on terminals such as smart phones (such as Android phones, IOS phones, etc.), tablets, laptops, and smart devices.
- FIG. 1 is a schematic flowchart of a method for customizing an application control style provided by an embodiment of the present application. The method includes steps S101 to S104.
- S101 inherits the controls in the system visualization control class.
- a custom control is implemented by inheriting a control (Button control) in a visual control (View) class.
- a self can be completed by providing a construct name and calling a Button control in the View class.
- the control is defined, and the user can also provide multiple construct names as needed and call the View class constructor to complete multiple custom controls.
- the number of the custom controls is not limited here, for example, public class TabButton extends Button ⁇ , Among them, TabButton represents the name of the provided construct, and Button is the Button control in the View class, thus implementing the Button control in the View class.
- the control method includes at least a first parameter and a second parameter, where the first parameter or the second parameter may be a formal parameter or an actual parameter, if the first parameter or the first parameter
- the second parameter is a formal parameter, and the first parameter or the second parameter is an independent variable of the control method, and the initial value is derived from a call to the method, and the method is called only during the execution of the program, the first The parameter or the second parameter may obtain a specific value and participate in the operation of the control method; if the first parameter or the second parameter is an actual parameter, the first parameter or the second parameter may be a constant, a variable, Expressions and functions, etc., but regardless of the type of the actual parameter, the first parameter or the second parameter must have a certain value during the invocation of the control method.
- the embodiment of the present application needs to construct a control (TabButton control) method to implement the custom control function and the style attribute, and at least the first parameter and the second parameter are included in the TabButton method.
- a control TabButton control
- the parameter types of the first parameter and the second parameter may be customized according to actual needs, and the specific parameter types are not limited herein.
- step S102 includes steps S201 to S202.
- one or several control identifiers specific to the application interface may be included, that is, the control identifiers of some controls on the application interface may be included.
- the input method as an example, in the input method control method, a specific one or several control identifiers on the input method panel may be included.
- the original style data corresponding to the same control identifier in the input method style file may be replaced by the corresponding style data determined by the control identifier determined in the customized control method, so that the subsequent input method panel is called (restarted). After that, the control identifier in the input method panel of the presentation can be replaced.
- the above application takes the input method as an example, that is, the style of the specific control in the input method is set as an example, but the above method provided by the embodiment of the present application is not limited to the input method, and can also be used for applications such as video and social. Class applications, etc. For example, you can change the style of the search button in the social application.
- the custom controls involved in the embodiments of the present application may include, but are not limited to, virtual buttons, edit boxes, or display frames.
- the style data involved in the embodiments of the present application may include, but is not limited to, a picture position, a file position, a background picture, a color, or a transparency.
- the custom control method may include the identifier of the delete key and the file position corresponding to the delete key.
- other control property information such as control position information can be included in the custom control method.
- the embodiment of the present application constructs a control method according to the control by inheriting a control in the system visual control control class, wherein the control method includes at least a first parameter and a second parameter, and obtains the first method of the control method.
- the parameter and the second parameter setting the first parameter and the second parameter to realize the customization of the text position and the picture position of the control, can reduce the workload of the developer for the custom control, enhance the user click control and the user selects the APP product. Desire and enhance the user experience.
- FIG. 3 is a schematic flowchart of a method for customizing an application control style according to an embodiment of the present application.
- the method can be run on terminals such as smart phones (such as Android phones, IOS phones, etc.), tablets, laptops, and smart devices.
- FIG. 3 is a schematic flowchart of a method for customizing an application control style according to an embodiment of the present application. The method includes steps S301 to S307.
- the custom control is implemented by inheriting the Button control in the View class.
- a custom control can be completed by providing a construct name and calling the Button control in the View, and the user can also Provide multiple constructors and call the View constructor to complete multiple custom controls.
- the number of custom controls is not limited here, for example, public class TabButton extends Button ⁇ , where TabButton represents the supplied constructor name.
- Button is the Button control in the View class, so that the implementation of the Button control in the View class.
- the control method includes at least a first parameter and a second parameter, where the first parameter or the second parameter may be a formal parameter or an actual parameter, if the first parameter or the first parameter
- the second parameter is a formal parameter, and the first parameter or the second parameter is an independent variable of the control method, and the initial value is derived from a call to the method, and the method is called only during the execution of the program, the first The parameter or the second parameter may obtain a specific value and participate in the operation of the control method; if the first parameter or the second parameter is an actual parameter, the first parameter or the second parameter may be a constant, a variable, Expressions and functions, etc., but regardless of the type of the actual parameter, the first parameter or the second parameter must have a certain value during the invocation of the control method.
- the embodiment of the present application needs to construct a control (TabButton control) method to implement the custom control function and the style attribute, and at least the first parameter and the second parameter are included in the TabButton method.
- a control TabButton control
- the parameter types of the first parameter and the second parameter may be customized according to actual needs, and the specific parameter types are not limited herein.
- the custom controls involved in the embodiments of the present application may include, but are not limited to, virtual buttons, edit boxes, or display frames.
- the style data involved in the embodiments of the present application may include, but is not limited to, a picture position, a file position, a background picture, a color, or a transparency.
- the custom control method may include the identifier of the delete key and the file position corresponding to the delete key.
- other control property information such as control position information can be included in the custom control method.
- a timer is added to the constructed control, and the timer may be a repeating timer or a one-time timer, and the specific timer type is based on The user needs to choose oneself and is not limited here.
- the interval between two clicks of the control is determined by setting a timer interval, and if the setting is 10 seconds, the control can only be clicked once within 10 seconds.
- the setting of the timer can be changed to manual setting. After clicking once, it must respond to certain operations before clicking again.
- the application scenario is such as login, and the control is unavailable after clicking login, and the login state must be obtained. (If the login fails, the password is incorrect, etc.), it will be restored.
- the abnormal problem of the control caused by repeated clicks can be avoided, and the user experience is improved.
- FIG. 4 is a schematic flowchart of a method for customizing an application control style according to an embodiment of the present application.
- the method can be run on terminals such as smart phones (such as Android phones, IOS phones, etc.), tablets, laptops, and smart devices.
- FIG. 4 is a schematic flowchart of a method for customizing an application control style according to an embodiment of the present application. The method includes steps S401 to S407.
- the user may directly refresh the current control style attribute option by clicking a control, or may select a control by clicking the left button. In the current panel, select the option to set the style properties. You can also insert the Set Style Properties option in the pop-up menu of the right-click control. Click the Set Style Properties option.
- S402. Display an editable style panel according to the instruction for setting the style.
- the style panel after receiving the instruction for setting the style attribute to the target control, the style panel is loaded, and then the editable style panel is displayed, and the style attribute and the style attribute value of the target control are set through the editable panel.
- the instruction for setting the style for the selected control is obtained, and the editable style panel is displayed according to the instruction of setting the style, and the edit operation of the style of the application through the editable style panel can speed up the editing speed of the style. It also avoids many performance issues.
- S404 inherits the controls in the system visualization control class.
- the custom control is implemented by inheriting the Button control in the View class.
- a custom control can be completed by providing a construct name and calling the Button control in the View, and the user can also Provide multiple constructors and call the View constructor to complete multiple custom controls.
- the number of custom controls is not limited here, for example, public class TabButton extends Button ⁇ , where TabButton represents the supplied constructor name.
- Button is the Button control in the View class, so that the implementation of the Button control in the View class.
- the control method includes at least a first parameter and a second parameter, where the first parameter or the second parameter may be a formal parameter or an actual parameter, if the first parameter or the first parameter
- the second parameter is a formal parameter, and the first parameter or the second parameter is an independent variable of the control method, and the initial value is derived from a call to the method, and the method is called only during the execution of the program, the first The parameter or the second parameter may obtain a specific value and participate in the operation of the control method; if the first parameter or the second parameter is an actual parameter, the first parameter or the second parameter may be a constant, a variable, Expressions and functions, etc., but regardless of the type of the actual parameter, the first parameter or the second parameter must have a certain value during the invocation of the control method.
- the embodiment of the present application needs to construct a control (TabButton control) method to implement the custom control function and the style attribute, and at least the first parameter and the second parameter are included in the TabButton method.
- Constructs a TabButton method to be called by the Activity in the system for example, a pubic TabButton (Context first parameter, AttributeSet second parameter) ⁇ , where Context and AttributeSet represent the parameter type of the first parameter and the second parameter, respectively.
- the parameter types of the first parameter and the second parameter may be customized according to actual needs, and the specific parameter types are not limited herein.
- the custom controls involved in the embodiments of the present application may include, but are not limited to, virtual buttons, edit boxes, or display frames.
- the style data involved in the embodiments of the present application may include, but is not limited to, a picture position, a file position, a background picture, a color, or a transparency.
- the custom control method may include the identifier of the delete key and the file position corresponding to the delete key.
- other control property information such as control position information can be included in the custom control method.
- the embodiment of the present application further provides an application control style customization device, and the apparatus 100 includes: an inheritance unit 101, a construction unit 102, and a first acquisition unit 103.
- the first setting unit 104 is a configurable unit 101, and a configurable unit 102, and a configurable unit 103.
- the inheritance unit 101 is configured to inherit the controls in the system visual control class.
- the constructing unit 102 is configured to construct a control method according to the control.
- the first obtaining unit 103 is configured to acquire the first parameter and the second parameter.
- the first setting unit 104 is configured to set the first parameter and the second parameter to implement customization of a text position and a picture position of the control.
- the constructing unit 102 includes:
- the determining unit 1021 is configured to determine a control identifier and corresponding style data.
- the replacing unit 1022 is configured to replace the original style data of the control with the style data.
- the embodiment of the present application further provides an application control style customization device, and the apparatus 200 includes: an inheritance unit 201, a construction unit 202, and a first acquisition unit 203.
- the inheritance unit 201 is configured to inherit the controls in the system visual control class.
- the constructing unit 202 is configured to construct a control method according to the control.
- the first obtaining unit 203 is configured to acquire the first parameter and the second parameter.
- the first setting unit 204 is configured to set the first parameter and the second parameter to implement customization of a text position and a picture position of the control.
- the creating unit 205 is configured to create a timer.
- the second setting unit 206 is configured to set a time interval of the timer.
- the control unit 207 is configured to control a click operation of the custom control according to the time interval.
- the embodiment of the present application further provides an application control style customization device, and the apparatus 300 includes: a second acquisition unit 301, a display unit 302, and a third acquisition unit. 303. Inheritance unit 304, construction unit 305, first acquisition unit 306, and first setting unit 307.
- the second obtaining unit 301 is configured to acquire an instruction for setting a style for the selected application.
- the display unit 302 is configured to display an editable style surface according to the instruction for setting the style.
- the third obtaining unit 303 is configured to obtain a custom operation for the style of the application by using the editable style panel.
- the inheritance unit 304 is configured to inherit the controls in the system visual control class.
- the constructing unit 305 is configured to construct a control method according to the control.
- the first obtaining unit 306 is configured to acquire the first parameter and the second parameter.
- the first setting unit 307 is configured to set the first parameter and the second parameter to implement customization of a text position and a picture position of the control.
- the above inheritance unit 101, the construction unit 102, the first acquisition unit 103, the first setting unit 104, and the like may be embedded in hardware or in a device independent of data processing, or may be stored in software in software.
- the memory of the processing device is such that the processor invokes the operations corresponding to the above respective units.
- the processor can be a central processing unit (CPU), a microprocessor, a microcontroller, or the like.
- the above custom device can be implemented in the form of a computer program that can be run on a computer device as shown in FIG.
- FIG. 9 is a schematic structural diagram of a device for customizing an application control style according to the present application.
- the device may be a terminal or a server, wherein the terminal may be a communication-enabled electronic device such as a smart phone, a tablet computer, a notebook computer, a desktop computer, a personal digital assistant, and a wearable device.
- the server can be a standalone server or a server cluster consisting of multiple servers.
- the computer device 500 includes a processor 502, a non-volatile storage medium 503, an internal memory 504, and a network interface 505 connected by a system bus 501.
- the non-volatile storage medium 503 of the computer device 500 can store an operating system 5031 and a computer program 5032.
- the processor 502 can be caused to execute an application control style customization method.
- the processor 502 of the computer device 500 is used to provide computing and control capabilities to support the operation of the entire computer device 500.
- the internal memory 504 can store a computer program that, when executed by the processor, can cause the processor 502 to perform an application control style customization method.
- the network interface 505 of the computer device 500 is used to perform network communications, such as sending assigned tasks and the like. It will be understood by those skilled in the art that the structure shown in FIG. 9 is only a block diagram of a part of the structure related to the solution of the present application, and does not constitute a limitation of the computer device to which the solution of the present application is applied.
- the specific computer device may It includes more or fewer components than those shown in the figures, or some components are combined, or have different component arrangements.
- the processor 502 performs the following operations:
- the first parameter and the second parameter are set to implement customization of a text position and a picture position of the control.
- the constructing a control method according to the control includes:
- the original style data of the control is replaced with the style data.
- the processor 505 also performs the following operations:
- the processor 505 also performs the following operations:
- control comprises: a virtual button, an edit box, or a display box.
- the embodiment of the application control style customization device shown in FIG. 9 does not constitute a limitation on the specific configuration of the application control style customization device.
- the application control style customization device may Includes more or fewer components than shown, or combines some components, or different component arrangements.
- the control style customization device is applied to include only the memory and the processor. In such an embodiment, the structure and function of the memory and the processor are consistent with the embodiment shown in FIG. Narration.
- the application provides a computer readable storage medium storing one or more programs, the one or more programs being executable by one or more processors to implement the following steps:
- the first parameter and the second parameter are set to implement customization of a text position and a picture position of the control.
- the constructing a control method according to the control includes:
- the original style data of the control is replaced with the style data.
- the steps further include:
- the steps further include:
- control comprises: a virtual button, an edit box, or a display box.
- the foregoing storage medium of the present application includes: a magnetic disk, an optical disk, a read-only memory (ROM), and the like, which can store various program codes.
- the units in all the embodiments of the present application may be implemented by a general-purpose integrated circuit, such as a CPU (Central Processing Unit), or by an ASIC (Application Specific Integrated Circuit).
- a general-purpose integrated circuit such as a CPU (Central Processing Unit), or by an ASIC (Application Specific Integrated Circuit).
- the steps in the application control style customization method in the embodiment of the present application may be sequentially adjusted, merged, and deleted according to actual needs.
- the units in the application control style customization device in the embodiment of the present application may be combined, divided, and deleted according to actual needs.
Landscapes
- Engineering & Computer Science (AREA)
- Software Systems (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
一种应用控件样式自定义方法、装置以及计算机可读存储介质,其中所述方法包括:继承系统可视化控件类中的控件(S101);根据所述控件构造控件方法(S102);获取所述控件方法的第一参数和第二参数(S103);设置所述第一参数和第二参数以实现控件的文字位置和图片位置的自定义(S104)。上述方法可以减少开发人员对于自定义控件的工作量,增强用户点击控件和用户选择APP产品的欲望,并提升用户的使用体验。
Description
本申请要求于2017年9月12日提交中国专利局、申请号为CN 201710819083.0、申请名称为“应用控件样式自定义方法、装置以及计算机可读存储介质”的中国专利申请的优先权,其全部内容通过引用结合在本申请中。
本申请涉及计算机技术领域,尤其涉及应用控件样式自定义方法、装置以及计算机可读存储介质。
App产品的界面设计往往决定了用户对该产品的第一印象。综合最近几年的界面设计方法,从视觉上来看变化越来越少。
控件的样式设计是被人们关注最多的一个设计元素,它很大程度上决定了用户点击欲望。控件的外观(例如控件上文字位置、图片位置)等都是控件设计的决定性因素,一个控件往往从外观上就可以看出这个控件的功能。另外,控件的外观在一定程度上会影响用户对于APP产品的青睐,虽然开发人员可以自己定制出想要的样式,但是对于一个APP项目,如果每个控件都进行定制和重写,其对于开发工作量的消息会相当大。
发明内容
本申请实施例提供一种应用控件样式自定义方法、装置以及计算机可读存储介质,可以减少开发人员对于自定义控件的工作量,增强用户点击控件和用户选择APP产品的欲望,并提升用户的使用体验。
一方面,本申请实施例提供了一种应用控件样式自定义方法,该方法包括:
继承系统可视化控件类中的控件;
根据所述控件构造控件方法;
获取所述控件方法的第一参数和第二参数;
设置所述第一参数和第二参数以实现控件的文字位置和图片位置的自定义。
另一方面,本申请实施例还提供了一种应用控件样式自定义装置,所述装置包括:
继承单元,用于继承系统可视化控件类中的控件;
构造单元,用于根据所述控件构造控件方法;
第一获取单元,用于获取所述第一参数和第二参数;
第一设置单元,用于设置所述第一参数和第二参数以实现控件的文字位置和图片位置的自定义。
又一方面,本申请实施例还提供了一种应用控件样式自定义装置,包括:
存储器,用于存储实现应用控件样式自定义的程序;以及
处理器,用于运行所述存储器中存储的实现应用控件样式自定义的程序,以执行以下操作:
继承系统可视化控件类中的控件;
根据所述控件构造控件方法;
获取所述控件方法的第一参数和第二参数;
设置所述第一参数和第二参数以实现控件的文字位置和图片位置的自定义。
再一方面,本申请实施例还提供了一种计算机可读存储介质,所述计算机可读存储介质存储有一个或者一个以上程序,所述一个或者一个以上程序可被一个或者一个以上的处理器执行,以实现以下步骤:
继承系统可视化控件类中的控件;
根据所述控件构造控件方法;
获取所述控件方法的第一参数和第二参数;
设置所述第一参数和第二参数以实现控件的文字位置和图片位置的自定义。
本申请实施例通过继承系统可视化控件类中的控件,根据所述控件构造控件方法,其中,所述控件方法至少包括第一参数和第二参数,获取所述控件方法的第一参数和第二参数,设置所述第一参数和第二参数以实现控件的文字位置和图片位置的自定义,可以减少开发人员对于自定义控件的工作量,增强用 户点击控件和用户选择APP产品的欲望,并提升用户的使用体验。
为了更清楚地说明本申请实施例技术方案,下面将对实施例描述中所需要使用的附图作简单地介绍,显而易见地,下面描述中的附图是本申请的一些实施例,对于本领域普通技术人员来讲,在不付出创造性劳动的前提下,还可以根据这些附图获得其他的附图。
图1是本申请实施例提供的一种应用控件样式自定义方法的示意流程图;
图2是本申请实施例提供的一种应用控件样式自定义方法的另一示意流程图;
图3是本申请另一实施例提供的一种应用控件样式自定义方法的示意流程图;
图4是本申请另一实施例提供的一种应用控件样式自定义方法的示意流程图;
图5是本申请实施例提供的一种应用控件样式自定义装置的示意性框图;
图6是本申请实施例提供的一种应用控件样式自定义装置的另一示意性框图;
图7是本申请实施例提供的一种应用控件样式自定义装置的另一示意性框图;
图8是本申请实施例提供的一种应用控件样式自定义装置的另一示意性框图;
图9是本申请实施例提供的一种应用控件样式自定义装置结构组成示意图。
下面将结合本申请实施例中的附图,对本申请实施例中的技术方案进行清楚、完整地描述,显然,所描述的实施例是本申请一部分实施例,而不是全部的实施例。基于本申请中的实施例,本领域普通技术人员在没有做出创造性劳动前提下所获得的所有其他实施例,都属于本申请保护的范围。
应当理解,当在本说明书和所附权利要求书中使用时,术语“包括”和“包含”指示所描述特征、整体、步骤、操作、元素和/或组件的存在,但并不排除 一个或多个其它特征、整体、步骤、操作、元素、组件和/或其集合的存在或添加。
还应当理解,在此本申请说明书中所使用的术语仅仅是出于描述特定实施例的目的而并不意在限制本申请。如在本申请说明书和所附权利要求书中所使用的那样,除非上下文清楚地指明其它情况,否则单数形式的“一”、“一个”及“该”意在包括复数形式。
请参阅图1,图1是本申请实施例提供的一种应用控件样式自定义方法的示意流程图。该方法可以运行在智能手机(如Android手机、IOS手机等)、平板电脑、笔记本电脑以及智能设备等终端中。图1是本申请实施例提供的一种应用控件样式自定义方法的示意流程图。该方法包括步骤S101~S104。
S101,继承系统可视化控件类中的控件。
在本申请实施例中,通过继承可视化控件(View)类中的控件(Button控件)以实现自定义控件,具体的,可以通过提供一个构造名并调用View类中的Button控件的方式完成一个自定义控件,用户根据需要也可以提供多个构造名并分别调用View类构造器以完成多个自定义控件,所述自定义控件的数量在此不作限定,例如,public class TabButton extends Button{},其中,TabButton表示所提供的构造名,Button为View类中的Button控件,这样便实现继承View类中的Button控件。
S102,根据所述控件构造控件方法。
在本申请实施例中,所述控件方法中至少包括第一参数和第二参数,所述第一参数或者第二参数可以是形式参数,也可以是实际参数,若所述第一参数或者第二参数为形式参数,所述第一参数或者第二参数即为所述控件方法的自变量,其初值来源于对方法的调用,并且只有在程序执行过程中调用了方法,所述第一参数或者第二参数才可能得到具体的值,并参与所述控件方法的运算;若所述第一参数或者第二参数为实际参数,所述第一参数或者第二参数可以是常量、变量、表达式以及函数等,但是无论实际参数具体是哪种类型的量,在进行所述控件方法的调用过程中,所述第一参数或者第二参数必须具有确定的值。可选的,本申请实施例在继承了View类中的Button控件之后,需要构造控件(TabButton控件)方法以实现自定义控件功能以及样式属性,在TabButton方法中至少包括第一参数和第二参数,构造TabButton方法以方便在系统中被 Activity所调用,例如,pubic TabButton(Context第一参数,AttributeSet第二参数){},其中Context以及AttributeSet分别表示第一参数和第二参数的参数类型,用户可以根据实际的需要自定义第一参数和第二参数的参数类型,具体的参数类型在此不作限定。
进一步地,如图2所示,步骤S102包括步骤S201~S202。
S201,确定控件标识和对应的样式数据。
在本申请实施例中,在自定义的控件方法中,可以包含关于应用界面上特定的一个或几个控件标识,也就是说,可以包含关于应用界面上部分控件的控件标识。以输入法为例,在输入法控件方法中,可以包含输入法面板上特定的一个或几个控件标识。
S202,利用所述样式数据替换所述控件的原始样式数据。
在本申请实施例中,可以利用从自定义的控件方法中确定的控件标识对应的样式数据替换输入法样式文件中同一控件标识对应的原始样式数据,这样后续输入法面板被调用(重新启动)后,展现的输入法面板中该控件标识就可以采用替换后的样式。
需要说明的是,上述应用以输入法为例,即设置输入法中特定控件的样式为例,但本申请实施例提供的上述方法并不限于输入法,还可以用于诸如视频类应用、社交类应用等。例如可以更换社交类应用中搜索按键的样式。
S103,获取所述控件方法的第一参数和第二参数。
S104,设置所述第一参数和第二参数以实现控件的文字位置和图片位置的自定义。
本申请实施例中涉及的自定义控件可以包括但不限于虚拟按键、编辑框或者展示框。本申请实施例中涉及的样式数据可以包括但不限于图片位置、文件位置、背景图片、颜色或者透明度。举个例子,假设用户希望仅仅更换输入法面板中删除键的位置,可以通过自定义的控件方法中包含删除键的标识以及该删除键对应的文件位置。除此之外,在自定义的控件方法中还可以包含除了控件位置信息等其他控件属性信息。
由以上可见,本申请实施例通过继承系统可视化控件类中的控件,根据所述控件构造控件方法,其中,所述控件方法至少包括第一参数和第二参数,获取所述控件方法的第一参数和第二参数,设置所述第一参数和第二参数以实现 控件的文字位置和图片位置的自定义,可以减少开发人员对于自定义控件的工作量,增强用户点击控件和用户选择APP产品的欲望,并提升用户的使用体验。
请参阅图3,图3是本申请实施例提供的一种应用控件样式自定义方法的示意流程图。该方法可以运行在智能手机(如Android手机、IOS手机等)、平板电脑、笔记本电脑以及智能设备等终端中。图3是本申请实施例提供的一种应用控件样式自定义方法的示意流程图。该方法包括步骤S301~S307。
S301,继承系统可视化控件类中的控件。
在本申请实施例中,通过继承View类中的Button控件以实现自定义控件,具体的,可以通过提供一个构造名并调用View中的Button控件的方式完成一个自定义控件,用户根据需要也可以提供多个构造名并分别调用View构造器以完成多个自定义控件,所述自定义控件的数量在此不作限定,例如,public class TabButton extends Button{},其中,TabButton表示所提供的构造名,Button为View类中的Button控件,这样便实现继承View类中的Button控件。
S302,根据所述控件构造控件方法。
在本申请实施例中,所述控件方法中至少包括第一参数和第二参数,所述第一参数或者第二参数可以是形式参数,也可以是实际参数,若所述第一参数或者第二参数为形式参数,所述第一参数或者第二参数即为所述控件方法的自变量,其初值来源于对方法的调用,并且只有在程序执行过程中调用了方法,所述第一参数或者第二参数才可能得到具体的值,并参与所述控件方法的运算;若所述第一参数或者第二参数为实际参数,所述第一参数或者第二参数可以是常量、变量、表达式以及函数等,但是无论实际参数具体是哪种类型的量,在进行所述控件方法的调用过程中,所述第一参数或者第二参数必须具有确定的值。可选的,本申请实施例在继承了View类中的Button控件之后,需要构造控件(TabButton控件)方法以实现自定义控件功能以及样式属性,在TabButton方法中至少包括第一参数和第二参数,构造TabButton方法以方便在系统中被Activity所调用,例如,pubic TabButton(Context第一参数,AttributeSet第二参数){},其中Context以及AttributeSet分别表示第一参数和第二参数的参数类型,用户可以根据实际的需要自定义第一参数和第二参数的参数类型,具体的参数类型在此不作限定。
S303,获取所述控件方法的第一参数和第二参数。
S304,设置所述第一参数和第二参数以实现控件的文字位置和图片位置的自定义。
本申请实施例中涉及的自定义控件可以包括但不限于虚拟按键、编辑框或者展示框。本申请实施例中涉及的样式数据可以包括但不限于图片位置、文件位置、背景图片、颜色或者透明度。举个例子,假设用户希望仅仅更换输入法面板中删除键的位置,可以通过自定义的控件方法中包含删除键的标识以及该删除键对应的文件位置。除此之外,在自定义的控件方法中还可以包含除了控件位置信息等其他控件属性信息。
S305,创建定时器。
在本申请实施例中,在构造并设置完控件后,针对所构造的控件添加一个定时器,所述定时器可以是反复性定时器,也可以是一次性定时器,具体的定时器类型根据用户的需要自行选择,在此不作限定。
S306,设置所述定时器的时间间隔。
在本申请实施例中,通过设置定时器时间间隔,决定控件两个点击的间隔时间,如设置10秒,则10秒内控件只可点击一次。
S307,根据所述时间间隔控制自定义控件的点击操作。
在本申请实施例中,例如,可以将定时器的设置改为手动设置,点击一次之后必须响应某些操作才可再次点击,应用场景如登录,点击登录之后控件不可用,必须获取到登录状态(如登录失败、密码错误等)之后才恢复使用。
在本明实施例中,通过创建定时器,设置所述定时器的时间间隔,根据所述时间间隔控制自定义控件的点击操作,可以避免重复点击导致控件的异常问题,改善用户的使用体验。
请参阅图4,图4是本申请实施例提供的一种应用控件样式自定义方法的示意流程图。该方法可以运行在智能手机(如Android手机、IOS手机等)、平板电脑、笔记本电脑以及智能设备等终端中。图4是本申请实施例提供的一种应用控件样式自定义方法的示意流程图。该方法包括步骤S401~S407。
S401,获取为选取的控件设置样式的指令。
在本申请实施中,获取为控件设置样式属性的指令的方式可以有多种,例如,可以是通过点击控件,直接刷新出当前控件样式属性选项,也可以是通过点击左键选取控件后,从当前面板中选取设置样式属性的选项,还可以在右键 点击控件弹出的菜单中插入设置样式属性选项,点击该设置样式属性选项。
S402,根据所述设置样式的指令显示可编辑样式面板。
在本申请实施例中,接收对目标控件设置样式属性的指令后,加载样式面板,继而显示可编辑样式面板,通过可编辑面板可对目标控件的各样式属性及样式属性值进行设置。
S403,通过所述可编辑样式面板获取针对应用的样式的自定义操作。
在本申请实施例中,通过获取为选取的控件设置样式的指令,根据设置样式的指令显示可编辑样式面板,通过可编辑样式面板针对应用的样式的自定义操作,可以加快样式的编辑速度,同时也避免了很多性能问题。
S404,继承系统可视化控件类中的控件。
在本申请实施例中,通过继承View类中的Button控件以实现自定义控件,具体的,可以通过提供一个构造名并调用View中的Button控件的方式完成一个自定义控件,用户根据需要也可以提供多个构造名并分别调用View构造器以完成多个自定义控件,所述自定义控件的数量在此不作限定,例如,public class TabButton extends Button{},其中,TabButton表示所提供的构造名,Button为View类中的Button控件,这样便实现继承View类中的Button控件。
S405,根据所述控件构造控件方法。
在本申请实施例中,所述控件方法中至少包括第一参数和第二参数,所述第一参数或者第二参数可以是形式参数,也可以是实际参数,若所述第一参数或者第二参数为形式参数,所述第一参数或者第二参数即为所述控件方法的自变量,其初值来源于对方法的调用,并且只有在程序执行过程中调用了方法,所述第一参数或者第二参数才可能得到具体的值,并参与所述控件方法的运算;若所述第一参数或者第二参数为实际参数,所述第一参数或者第二参数可以是常量、变量、表达式以及函数等,但是无论实际参数具体是哪种类型的量,在进行所述控件方法的调用过程中,所述第一参数或者第二参数必须具有确定的值。可选的,本申请实施例在继承了View类中的Button控件之后,需要构造控件(TabButton控件)方法以实现自定义控件功能以及样式属性,在TabButton方法中至少包括第一参数和第二参数,构造TabButton方法以方便在系统中被Activity所调用,例如,pubic TabButton(Context第一参数,AttributeSet第二参数){},其中Context以及AttributeSet分别表示第一参数和第二参数的参数类型, 用户可以根据实际的需要自定义第一参数和第二参数的参数类型,具体的参数类型在此不作限定。
S406,获取所述控件方法的第一参数和第二参数。
S407,设置所述第一参数和第二参数以实现控件的文字位置和图片位置的自定义。
本申请实施例中涉及的自定义控件可以包括但不限于虚拟按键、编辑框或者展示框。本申请实施例中涉及的样式数据可以包括但不限于图片位置、文件位置、背景图片、颜色或者透明度。举个例子,假设用户希望仅仅更换输入法面板中删除键的位置,可以通过自定义的控件方法中包含删除键的标识以及该删除键对应的文件位置。除此之外,在自定义的控件方法中还可以包含除了控件位置信息等其他控件属性信息。
请参阅图5,对应上述一种应用控件样式自定义方法,本申请实施例还提出一种应用控件样式自定义装置,该装置100包括:继承单元101、构造单元102、第一获取单元103、第一设置单元104。
其中,所述继承单元101,用于继承系统可视化控件类中的控件。
构造单元102,用于根据所述控件构造控件方法。
第一获取单元103,用于获取所述第一参数和第二参数。
第一设置单元104,用于设置所述第一参数和第二参数以实现控件的文字位置和图片位置的自定义。
如图6所示,所述构造单元102,包括:
确定单元1021,用于确定控件标识和对应的样式数据。
替换单元1022,用于利用所述样式数据替换所述控件的原始样式数据。
请参阅图7,对应上述一种应用控件样式自定义方法,本申请实施例还提出一种应用控件样式自定义装置,该装置200包括:继承单元201、构造单元202、第一获取单元203、第一设置单元204、创建单元205、第二设置单元206、控制单元207。
其中,所述继承单元201,用于继承系统可视化控件类中的控件。
构造单元202,用于根据所述控件构造控件方法。
第一获取单元203,用于获取所述第一参数和第二参数。
第一设置单元204,用于设置所述第一参数和第二参数以实现控件的文字位 置和图片位置的自定义。
创建单元205,用于创建定时器。
第二设置单元206,用于设置所述定时器的时间间隔。
控制单元207,用于根据所述时间间隔控制自定义控件的点击操作。
请参阅图8,对应上述一种应用控件样式自定义方法,本申请实施例还提出一种应用控件样式自定义装置,该装置300包括:第二获取单元301、显示单元302、第三获取单元303、继承单元304、构造单元305、第一获取单元306、第一设置单元307。
其中,所述第二获取单元301,用于获取为选取的应用设置样式的指令。
显示单元302,用于根据所述设置样式的指令显示可编辑样式面。
第三获取单元303,用于通过所述可编辑样式面板获取针对应用的样式的自定义操作。
继承单元304,用于继承系统可视化控件类中的控件。
构造单元305,用于根据所述控件构造控件方法。
第一获取单元306,用于获取所述第一参数和第二参数。
第一设置单元307,用于设置所述第一参数和第二参数以实现控件的文字位置和图片位置的自定义。
在硬件实现上,以上继承单元101、构造单元102、第一获取单元103、第一设置单元104等可以以硬件形式内嵌于或独立于数据处理的装置中,也可以以软件形式存储于数据处理装置的存储器中,以便处理器调用执行以上各个单元对应的操作。该处理器可以为中央处理单元(CPU)、微处理器、单片机等。
上述自定义装置可以实现为一种计算机程序的形式,计算机程序可以在如图9所示的计算机装置上运行。
图9为本申请一种应用控件样式自定义装置的结构组成示意图。该装置可以是终端,也可以是服务器,其中,终端可以是智能手机、平板电脑、笔记本电脑、台式电脑、个人数字助理和穿戴式设备等具有通信功能的电子设备。服务器可以是独立的服务器,也可以是多个服务器组成的服务器集群。参照图9,该计算机装置500包括通过系统总线501连接的处理器502、非易失性存储介质503、内存储器504和网络接口505。其中,该计算机装置500的非易失性存储介质503可存储操作系统5031和计算机程序5032,该计算机程序5032被执行 时,可使得处理器502执行一种应用控件样式自定义方法。该计算机装置500的处理器502用于提供计算和控制能力,支撑整个计算机装置500的运行。该内存储器504中可储存有计算机程序,该计算机程序被处理器执行时,可使得处理器502执行一种应用控件样式自定义方法。计算机装置500的网络接口505用于进行网络通信,如发送分配的任务等。本领域技术人员可以理解,图9中示出的结构,仅仅是与本申请方案相关的部分结构的框图,并不构成对本申请方案所应用于其上的计算机装置的限定,具体的计算机装置可以包括比图中所示更多或更少的部件,或者组合某些部件,或者具有不同的部件布置。
其中,所述处理器502执行如下操作:
继承系统可视化控件类中的控件;
根据所述控件构造控件方法;
获取所述控件方法的第一参数和第二参数;
设置所述第一参数和第二参数以实现控件的文字位置和图片位置的自定义。
在一个实施例中,所述根据所述控件构造控件方法,包括:
确定控件标识和对应的样式数据;
利用所述样式数据替换所述控件的原始样式数据。
在一个实施例中,所述处理器505还执行如下操作:
创建定时器;
设置所述定时器的时间间隔;
根据所述时间间隔控制自定义控件的点击操作。
在一个实施例中,所述处理器505还执行如下操作:
获取为选取的应用设置样式的指令;
根据所述设置样式的指令显示可编辑样式面板;
通过所述可编辑样式面板获取针对应用的样式的自定义操作。
在一个实施例中,所述控件包括:虚拟按键、编辑框或者展示框。
本领域技术人员可以理解,图9中示出的应用控件样式自定义装置的实施例并不构成对应用控件样式自定义装置具体构成的限定,在其他实施例中,应用控件样式自定义装置可以包括比图示更多或更少的部件,或者组合某些部件,或者不同的部件布置。例如,在一些实施例中,应用控件样式自定义装置以仅 包括存储器及处理器,在这样的实施例中,存储器及处理器的结构及功能与图9所示实施例一致,在此不再赘述。
本申请提供了一种计算机可读存储介质,计算机可读存储介质存储有一个或者一个以上程序,所述一个或者一个以上程序可被一个或者一个以上的处理器执行,以实现以下步骤:
继承系统可视化控件类中的控件;
根据所述控件构造控件方法;
获取所述第一参数和第二参数;
设置所述第一参数和第二参数以实现控件的文字位置和图片位置的自定义。
在一个实施例中,所述根据所述控件构造控件方法,包括:
确定控件标识和对应的样式数据;
利用所述样式数据替换所述控件的原始样式数据。
在一个实施例中,所述步骤还包括:
创建定时器;
设置所述定时器的时间间隔;
根据所述时间间隔控制自定义控件的点击操作。
在一个实施例中,所述步骤还包括:
获取为选取的应用设置样式的指令;
根据所述设置样式的指令显示可编辑样式面板;
通过所述可编辑样式面板获取针对应用的样式的自定义操作。
在一个实施例中,所述控件包括:虚拟按键、编辑框或者展示框。
本申请前述的存储介质包括:磁碟、光盘、只读存储记忆体(Read-Only Memory,ROM)等各种可以存储程序代码的介质。
本申请所有实施例中的单元可以通过通用集成电路,例如CPU(Central Processing Unit,中央处理器),或通过ASIC(Application Specific Integrated Circuit,专用集成电路)来实现。
本申请实施例应用控件样式自定义方法中的步骤可以根据实际需要进行顺序调整、合并和删减。
本申请实施例应用控件样式自定义装置中的单元可以根据实际需要进行合 并、划分和删减。
以上所述,仅为本申请的具体实施方式,但本申请的保护范围并不局限于此,任何熟悉本技术领域的技术人员在本申请揭露的技术范围内,可轻易想到各种等效的修改或替换,这些修改或替换都应涵盖在本申请的保护范围之内。因此,本申请的保护范围应以权利要求的保护范围为准。
Claims (14)
- 替换单元,用于利用所述样式数据替换所述控件的原始样式数据。
- 如权利要求6所述的装置,其特征在于,所述装置还包括:创建单元,用于创建定时器;第二设置单元,用于设置所述定时器的时间间隔;控制单元,用于根据所述时间间隔控制自定义控件的点击操作;
- 如权利要求6所述的装置,其特征在于,所述装置还包括:第二获取单元,用于获取为选取的控件设置样式的指令;显示单元,用于根据所述设置样式的指令显示可编辑样式面板;第三获取单元,用于通过所述可编辑样式面板获取针对应用的样式的自定义操作;
- 如权利要求6所述的装置,其特征在于,所述控件包括:虚拟按键、编辑框或者展示框。
- 一种应用控件样式自定义装置,其特征在于,包括:存储器,用于存储实现应用控件样式自定义的程序;以及处理器,用于运行所述存储器中存储的实现应用控件样式自定义的程序,以执行以下操作:继承系统可视化控件类中的控件;根据所述控件构造控件方法;获取所述控件方法的第一参数和第二参数;设置所述第一参数和第二参数以实现控件的文字位置和图片位置的自定义。
- 如权利要求11所述的装置,其特征在于,所述根据所述控件构造控件方法,包括:确定控件标识和对应的样式数据;利用所述样式数据替换所述控件的原始样式数据。
- 如权利要求11所述的装置,其特征在于,所述处理器还执行以下操作:创建定时器;设置所述定时器的时间间隔;根据所述时间间隔控制自定义控件的点击操作。
- 如权利要求11所述的装置,其特征在地,所述处理器还执行以下操作:获取为选取的控件设置样式的指令;根据所述设置样式的指令显示可编辑样式面板;通过所述可编辑样式面板获取针对应用的样式的自定义操作。
- 如权利要求11所述的装置,其特征在于,所述控件包括:虚拟按键、编辑框或者展示框。
- 一种计算机可读存储介质,其特征在于,计算机可读存储介质存储有一个或者一个以上程序,所述一个或者一个以上程序可被一个或者一个以上的处理器执行,以实现以下步骤:继承系统可视化控件类中的控件;根据所述控件构造控件方法;获取所述控件方法的第一参数和第二参数;设置所述第一参数和第二参数以实现控件的文字位置和图片位置的自定义。
- 如权利要求16所述的计算机可读存储介质,其特征在于,所述根据所述控件构造控件方法,包括:确定控件标识和对应的样式数据;利用所述样式数据替换所述控件的原始样式数据。
- 如权利要求16所述的计算机可读存储介质,其特征在于,所述步骤还包括:创建定时器;设置所述定时器的时间间隔;根据所述时间间隔控制自定义控件的点击操作。
- 如权利要求16所述的计算机可读存储介质,其特征在于,所述步骤还包括:获取为选取的控件设置样式的指令;根据所述设置样式的指令显示可编辑样式面板;通过所述可编辑样式面板获取针对应用的样式的自定义操作。
- 如权利要求16所述的计算机可读存储介质,其特征在于,所述控件包括:虚拟按键、编辑框或者展示框。
Applications Claiming Priority (2)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN201710819083.0 | 2017-09-12 | ||
CN201710819083.0A CN107678744A (zh) | 2017-09-12 | 2017-09-12 | 应用控件样式自定义方法、装置以及计算机可读存储介质 |
Publications (1)
Publication Number | Publication Date |
---|---|
WO2019052115A1 true WO2019052115A1 (zh) | 2019-03-21 |
Family
ID=61134833
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
PCT/CN2018/075111 WO2019052115A1 (zh) | 2017-09-12 | 2018-02-02 | 应用控件样式自定义方法、装置以及计算机可读存储介质 |
Country Status (2)
Country | Link |
---|---|
CN (1) | CN107678744A (zh) |
WO (1) | WO2019052115A1 (zh) |
Families Citing this family (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN108733443A (zh) * | 2018-05-09 | 2018-11-02 | 成都市极米科技有限公司 | 一种基于Android系统的APP动态配置系统及其实现方法、动态配置方法 |
CN109117223B (zh) * | 2018-07-24 | 2021-06-25 | 北京酷我科技有限公司 | 一种提交请求状态提示的交互算法 |
CN109445780B (zh) * | 2018-09-19 | 2022-07-08 | 平安科技(深圳)有限公司 | 一种样式编辑方法及设备 |
CN109663345B (zh) * | 2018-12-26 | 2022-05-13 | 网易(杭州)网络有限公司 | 一种3d游戏的信息处理方法和装置 |
CN112530433B (zh) * | 2020-12-01 | 2023-11-07 | 杭州灵伴科技有限公司 | 一种通用语音指令生成方法、装置和增强现实显示设备 |
Citations (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US6222537B1 (en) * | 1997-07-29 | 2001-04-24 | International Business Machines Corporation | User interface controls for a computer system |
CN102981861A (zh) * | 2012-12-12 | 2013-03-20 | 上海航天测控通信研究所 | 一种基于Qt的自定义控件的使用方法 |
CN103530127A (zh) * | 2013-10-22 | 2014-01-22 | 北京奇虎科技有限公司 | 图标显示方法及装置 |
CN104484171A (zh) * | 2014-12-11 | 2015-04-01 | 深圳市路通网络技术有限公司 | 终端界面设计系统、方法及相关设备 |
CN105511873A (zh) * | 2015-12-02 | 2016-04-20 | 网易(杭州)网络有限公司 | 用户界面控件展示方法及装置 |
Family Cites Families (4)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN103440127A (zh) * | 2013-08-19 | 2013-12-11 | 中国电子科技集团公司第十五研究所 | 软件图形界面绘制方法和系统 |
CN103823681B (zh) * | 2014-02-24 | 2017-02-08 | 广州精攻网络科技有限公司 | 一种web控件的生成方法及装置 |
CN105159673A (zh) * | 2015-08-31 | 2015-12-16 | 百度在线网络技术(北京)有限公司 | 一种设置控件样式的方法和装置 |
CN105373520A (zh) * | 2015-10-13 | 2016-03-02 | 金蝶软件(中国)有限公司 | 设置控件样式属性的方法和装置 |
-
2017
- 2017-09-12 CN CN201710819083.0A patent/CN107678744A/zh active Pending
-
2018
- 2018-02-02 WO PCT/CN2018/075111 patent/WO2019052115A1/zh active Application Filing
Patent Citations (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US6222537B1 (en) * | 1997-07-29 | 2001-04-24 | International Business Machines Corporation | User interface controls for a computer system |
CN102981861A (zh) * | 2012-12-12 | 2013-03-20 | 上海航天测控通信研究所 | 一种基于Qt的自定义控件的使用方法 |
CN103530127A (zh) * | 2013-10-22 | 2014-01-22 | 北京奇虎科技有限公司 | 图标显示方法及装置 |
CN104484171A (zh) * | 2014-12-11 | 2015-04-01 | 深圳市路通网络技术有限公司 | 终端界面设计系统、方法及相关设备 |
CN105511873A (zh) * | 2015-12-02 | 2016-04-20 | 网易(杭州)网络有限公司 | 用户界面控件展示方法及装置 |
Also Published As
Publication number | Publication date |
---|---|
CN107678744A (zh) | 2018-02-09 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
WO2019052115A1 (zh) | 应用控件样式自定义方法、装置以及计算机可读存储介质 | |
WO2018077085A1 (zh) | 应用程序处理方法、装置及存储介质 | |
WO2018072639A1 (zh) | 一种应用界面的管理方法和装置 | |
US12056415B2 (en) | Desktop sharing method and mobile terminal | |
CN109471626B (zh) | 页面逻辑结构、页面生成方法、页面数据处理方法及装置 | |
US20140082511A1 (en) | Method and system for emulating desktop software applications in a mobile communication network | |
JP2018537783A (ja) | 事前に生成されたコンポーネントを使用してアプリケーションを稼働させること | |
CN110221899B (zh) | 一种用户界面的调节方法、装置及系统 | |
CN107402766B (zh) | 页面布局管理方法及装置 | |
WO2017107851A1 (zh) | 一种桌面应用组件发布、更新方法及装置 | |
WO2018176652A1 (zh) | 一种数据显示方法、装置及电子设备 | |
WO2024164933A1 (zh) | 特效道具的处理方法、装置、电子设备及存储介质 | |
WO2016138703A1 (zh) | 待机界面处理方法、装置及计算机储存介质 | |
CN112286554A (zh) | 应用程序更新方法、装置、电子设备和可读存储介质 | |
CN116048515A (zh) | 一种虚拟场景编辑方法、装置、设备和可读存储介质 | |
US9524239B2 (en) | Self service propagation of custom extension fields into web services | |
WO2018205390A1 (zh) | 一种控件布局显示控制方法、系统、装置及计算机可读存储介质 | |
CN114500731A (zh) | 一种广告显示方法及电子设备 | |
US20130069953A1 (en) | User Interface Feature Generation | |
CN111124386A (zh) | 基于Unity的动画事件处理方法、装置、设备和存储介质 | |
CN112507671B (zh) | 用于调整文本间距的方法、装置、以及可读介质 | |
US20240338302A1 (en) | Simulated software features in a simulated sandbox within a production environment | |
EP4216097A1 (en) | Method, system, equipment and medium for modifying the layering layer information of finite element model unit | |
JP2021000424A (ja) | コンピュータプログラム、サーバ装置、端末装置、プログラム生成方法、及び方法 | |
CN107678783B (zh) | 一种主题桌面构建方法、移动终端及计算机可读存储介质 |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
121 | Ep: the epo has been informed by wipo that ep was designated in this application |
Ref document number: 18856611 Country of ref document: EP Kind code of ref document: A1 |
|
NENP | Non-entry into the national phase |
Ref country code: DE |
|
32PN | Ep: public notification in the ep bulletin as address of the adressee cannot be established |
Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205A DATED 28.09.2020) |
|
122 | Ep: pct application non-entry in european phase |
Ref document number: 18856611 Country of ref document: EP Kind code of ref document: A1 |