WO2016201813A1 - 一种基于Android的动态布局方法及系统 - Google Patents

一种基于Android的动态布局方法及系统 Download PDF

Info

Publication number
WO2016201813A1
WO2016201813A1 PCT/CN2015/090183 CN2015090183W WO2016201813A1 WO 2016201813 A1 WO2016201813 A1 WO 2016201813A1 CN 2015090183 W CN2015090183 W CN 2015090183W WO 2016201813 A1 WO2016201813 A1 WO 2016201813A1
Authority
WO
WIPO (PCT)
Prior art keywords
layout
function
android
interface
resource file
Prior art date
Application number
PCT/CN2015/090183
Other languages
English (en)
French (fr)
Inventor
周彬
Original Assignee
中兴通讯股份有限公司
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 中兴通讯股份有限公司 filed Critical 中兴通讯股份有限公司
Publication of WO2016201813A1 publication Critical patent/WO2016201813A1/zh

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F3/00Input arrangements for transferring data to be processed into a form capable of being handled by the computer; Output arrangements for transferring data from processing unit to output unit, e.g. interface arrangements
    • G06F3/01Input arrangements or combined input and output arrangements for interaction between user and computer
    • G06F3/048Interaction techniques based on graphical user interfaces [GUI]
    • G06F3/0481Interaction techniques based on graphical user interfaces [GUI] based on specific properties of the displayed interaction object or a metaphor-based environment, e.g. interaction with desktop elements like windows or icons, or assisted by a cursor's changing behaviour or appearance
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements 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/44Arrangements for executing specific programs

Definitions

  • the present invention relates to the field of Android application development and maintenance, and in particular, to a dynamic layout method and system based on Android.
  • the interface dynamic layout can be effectively compatible with various application scenarios, simplify maintenance, and effectively control permissions; often in the same application, different user roles have different functional interfaces, using dynamic layout It can meet this kind of scenario very well, and it is easy to upgrade and maintain.
  • the view layout of Android is controlled by the Extensible Markup Language (xml) resource file.
  • the xml resource file has a static layout on the interface.
  • the application directly renders the view layout according to the xml resource file; however, in the case of encountering an Android application,
  • the traditional way is to independently layout various application scenarios, by defining multiple xml resource files and then satisfying the multi-scene application requirements through the judgment conditions of each scene in the android code; or Define an xml resource file that contains all the functional layouts.
  • the above two methods have problems: in the first method, multiple layout files are defined and judged by the android code.
  • the resource file reuse rate is high, which violates the lightweight design; the resource file is static, and the small details are modified.
  • the source resource file must also be modified; after the scene is over, the judgment code will be numerous, increasing the logic complexity.
  • an xml resource file which includes all functional layouts.
  • the function is controlled to display or hide a certain function, so that the layout order of each function is relatively fixed, and there is an inflexible function for each function.
  • block sorting it is not conducive to expansion, because every new function is added, the overall layout resource file needs to be modified.
  • the invention provides a dynamic layout method and system based on Android, and the purpose thereof is to solve the problems that the traditional Android static layout mode resource file has high reuse rate, high logic complexity and incapability of sorting each function block flexibly.
  • an embodiment of the present invention provides a dynamic layout method based on Android, including:
  • the method further includes:
  • the attribute parameters include at least the display position, name and icon of the function, and sort all functions according to the display position of each function.
  • the method further includes:
  • attribute parameters of each function also include tags, permission controls, and jump actions of the function.
  • steps of displaying the layout interface according to the layout resource file include:
  • the present invention also provides an Android-based dynamic layout system, including:
  • a first obtaining module configured to obtain a permission parameter of a current user for each function of a to-be-layout application
  • the second obtaining module is configured to determine an executable function that can be executed according to the permission parameter of the current user, and further obtain an attribute parameter corresponding to the executable function, where the attribute parameter includes a display position, a name, and an icon of each function;
  • a view unit generating module configured to generate a view unit according to an attribute parameter of the executable function, and determine a display order of each view unit;
  • the view unit adds a module, and is set to determine a reserved position of the view unit in the main interface of the application to be laid out, and each view unit is added in the main interface according to the display order.
  • system further includes:
  • the attribute parameter configuration module is configured to obtain all the functions of the application to be laid out, and perform attribute parameter configuration on each function.
  • the attribute parameter includes at least the display position, name and icon of the function, and performs all functions according to the display position of each function. Sort.
  • system further includes:
  • the resource file generation module is configured to generate a layout resource file and display the layout interface according to the layout resource file.
  • attribute parameters of each function also include tags, permission controls, and jump actions of the function.
  • the resource file generation module includes:
  • the parsing submodule is set to parse the layout resource file to generate a layout interface
  • Display submodules set to display the layout interface.
  • the dynamic layout method and system based on Android provides a flexible dynamic layout interface by configuring attribute parameters of each function, and the function layout module is separated from the main interface to meet the requirements of lightweight design, and is convenient for later maintenance;
  • the layout resource file is Dynamic, with good scalability, when you need to change the interface layout, you only need to modify the attribute parameters of the corresponding function. It solves the limitation of the static function layout mode, the order of each function is relatively fixed, and the flexible order cannot be flexed;
  • the display position of each function is set, which avoids the need of logic code to judge the layout and reduces the complexity of the interface layout.
  • FIG. 1 is a flow chart of steps of a dynamic layout method based on Android according to an embodiment of the present invention
  • FIG. 2 is a schematic structural diagram of an Android-based dynamic layout system according to an embodiment of the present invention.
  • the present invention provides a dynamic layout method based on Android, which can be applied to a terminal device installed with an Android operating system, and the terminal device may be a smart phone or a tablet computer.
  • the method includes:
  • Step 101 Acquire a permission parameter of a current user for each function of a to-be-layout application.
  • Step 102 Determine, according to the permission parameter of the current user, an executable function that can be executed, and further obtain an attribute parameter corresponding to the executable function, where the attribute parameter includes a display position, a name, and an icon of each function.
  • obtaining the attribute parameter corresponding to the executable function may be locally read from the terminal device, or may initiate a request to a predetermined remote server, waiting for the remote server to feed back to the terminal device.
  • Step 103 Generate a view unit according to an attribute parameter of the executable function, and determine a display order of each view unit.
  • the corresponding picture is found according to the icon in the attribute parameter of the executable function, the corresponding character value is found according to the name, the structure of the view unit is completed, and the display position sorts the view unit.
  • Step 104 Determine a reserved position of the view unit in the main interface of the application to be laid out, and add each view unit to the main interface according to the display order.
  • the present invention displays the view units required by the user, so that the interface layout more satisfies the user requirements. Further, before the step of acquiring the permission parameter of the current user for each function of the application to be laid out, the method further includes:
  • the layout resource file is dynamic in this method, when the display position, name, icon, mark, permission control, and jump action parameters of a function change, only the attribute parameter of the function can be modified. , no need to modify the resource file.
  • the method further includes:
  • steps of displaying the layout interface according to the layout resource file include:
  • the xml resource file is dynamically generated, and the application directly parses the xml resource file to present a layout interface, thereby realizing the effect of dynamically controlling the layout interface of the Android.
  • the dynamic layout method and system based on Android provided by the invention provides a flexible dynamic layout interface by configuring attribute parameters of each function, and the function layout module is separated from the main interface to meet the requirements of lightweight design, and is convenient for later maintenance; At the time, the display position of each function is set, avoiding the need for logic code to judge the layout, and reducing the complexity of the interface layout.
  • the present invention further provides an Android-based dynamic layout system, including:
  • the first obtaining module 201 is configured to acquire a permission parameter of each function of the current user for a to-be-layout application
  • the second obtaining module 202 is configured to determine an executable function that can be executed according to the permission parameter of the current user, and further obtain an attribute parameter corresponding to the executable function, where the attribute parameter includes a display position, a name, and an icon of each function;
  • the view unit generating module 203 is configured to generate a view unit according to an attribute parameter of the executable function, and determine each The order in which the view cells are displayed;
  • the view unit adding module 204 is configured to determine a reserved position of the view unit in the main interface of the application to be laid out, and add each view unit to the main interface according to the display order.
  • system further includes:
  • the attribute parameter configuration module 205 is configured to obtain all the functions of the application to be laid out, and perform attribute parameter configuration on each function.
  • the attribute parameter includes at least a display position, a name, and an icon of the function, and all functions are displayed according to the display position of each function. Sort.
  • system further includes:
  • the resource file generating module 206 is configured to generate a layout resource file and display the layout interface according to the layout resource file.
  • attribute parameters of each function also include tags, permission controls, and jump actions of the function.
  • the resource file generating module 206 includes:
  • the parsing sub-module 2061 is configured to parse the layout resource file to generate a layout interface
  • the display sub-module 2062 is configured to display the layout interface.
  • the Android-based dynamic layout system provided by the present invention is a device that applies the above method, that is, all the embodiments of the foregoing methods are applicable to the device, and all of the same or similar beneficial effects can be achieved.
  • a flexible dynamic layout interface is configured by configuring attribute parameters of each function, and the function layout module is separated from the main interface to meet the requirements of lightweight design, which is convenient for later maintenance; the layout resource file is dynamic. It has good expansibility. When you need to change the layout of the interface, you only need to modify the attribute parameters of the corresponding function. It solves the limitation of the static function layout mode. The order of each function is relatively fixed and cannot be flexibly sorted. At the time, the display position of each function is set, avoiding the need for logic code to judge the layout, and reducing the complexity of the interface layout.

Abstract

一种基于Android的动态布局方法及系统,该方法包括:获取当前用户针对一待布局应用的各个功能的权限参数;根据当前用户的权限参数,确定可以执行的可执行功能,进而获取可执行功能对应的属性参数,属性参数包括各个功能的显示位置、名称以及图标;根据可执行功能的属性参数,生成视图单元,并确定各个视图单元的显示顺序;确定待布局应用的主界面中的视图单元的预留位置,根据显示顺序,在主界面添加各个视图单元。该方法通过配置各个功能的属性参数来灵活的动态布局界面,功能布局模块与主界面分离,满足轻量化设计的要求;在属性参数配置时,对各个功能的显示位置做了设定,避开了需要逻辑代码判断布局,降低了界面布局的复杂性。

Description

一种基于Android的动态布局方法及系统 技术领域
本发明涉及Android应用开发和维护领域,特别涉及一种基于Android的动态布局方法及系统。
背景技术
随着移动互联的高速发展以及智能手机的普及,越来越多的传统和非传统行业逐渐步入了智能化移动化的工作新模式,通过Android应用来完成日常生活工作也越来越普遍,因此Android应用需求爆发式增长。
在Android应用开发和维护中,界面动态布局能够有效的兼容各种应用场景,简化维护工作,有效灵活的控制权限;往往在同一应用上,不同的用户角色有不同的功能界面,采用动态布局就能很好的满足这种场景,便于统一升级维护。
Android布局是直接关系到Android应用界面能否吸引到用户的眼球,所以在布局上开发人员都要花费大量的精力去打磨。Android的视图布局是由可拓展标记语言(xml)资源文件控制的,xml资源文件里对界面进行了静态的布局,应用直接根据xml资源文件而呈现视图布局;然而在遇到一个Android应用需要在不同的场景下显示不同的用户界面问题时,传统方式就是为各种应用场景进行独立布局,通过定义多个xml资源文件然后在android代码中通过各个场景的判断条件以满足多场景应用需求;或者定义一个xml资源文件,包含所有功能布局,在android代码中通过判断条件来控制显示或者隐藏某一功能,从而实现动态布局的效果。
然而以上两种方法均存在问题:第一种方法中,定义多个布局文件再通过android代码来判断,资源文件重用率高,违背了轻量化的设计;资源文件是静态的,小细节的修改也必须修改源资源文件;场景多了后判断代码就会繁多,增加了逻辑复杂度。
第二种方法中,定义一个xml资源文件,包含所有功能布局,在android代码中通过判断条件来控制显示或者隐藏某一功能,这样每个功能的布局顺序相对固定,存在无法灵活的对各个功能块排序的局限性;同时不利于拓展,因为每增加新功能,还需要修改整体布局资源文件。
发明内容
本发明提供了一种基于Android的动态布局方法及系统,其目的是为了解决传统的Android静态布局方式资源文件重用率高、逻辑复杂度高且无法灵活的对各个功能块排序等问题。
为了达到上述目的,本发明的实施例提供了一种基于Android的动态布局方法,包括:
获取当前用户针对一待布局应用的各个功能的权限参数;
根据当前用户的权限参数,确定可以执行的可执行功能,进而获取可执行功能对应的属性参数,属性参数包括各个功能的显示位置、名称以及图标;
根据可执行功能的属性参数,生成视图单元,并确定各个视图单元的显示顺序;
确定待布局应用的主界面中的视图单元的预留位置,根据显示顺序,在主界面添加各个视图单元。
进一步地,在获取当前用户针对一待布局应用的各个功能的权限参数的步骤之前,该方法还包括:
获取待布局应用的所有功能,对每个功能进行属性参数配置,属性参数至少包括该功能的显示位置、名称以及图标,并依据每个功能的显示位置对所有功能进行排序。
进一步地,确定待布局应用的主界面中的视图单元的预留位置,根据显示顺序,在主界面添加各个视图单元的步骤之后,该方法还包括:
生成布局资源文件,并依据布局资源文件显示布局界面。
进一步地,每个功能的属性参数还包括该功能的标记、权限控制以及跳转动作。
进一步地,依据布局资源文件显示布局界面的步骤包括:
对布局资源文件进行解析,生成布局界面;
对布局界面进行显示。
为了实现上述目的,本发明还提供了一种基于Android的动态布局系统,包括:
第一获取模块,设置为获取当前用户针对一待布局应用的各个功能的权限参数;
第二获取模块,设置为根据当前用户的权限参数,确定可以执行的可执行功能,进而获取可执行功能对应的属性参数,属性参数包括各个功能的显示位置、名称以及图标;
视图单元生成模块,设置为根据可执行功能的属性参数,生成视图单元,并确定各个视图单元的显示顺序;
视图单元添加模块,设置为确定待布局应用的主界面中的视图单元的预留位置,根据显示顺序,在主界面添加各个视图单元。
进一步地,该系统还包括:
属性参数配置模块,设置为获取待布局应用的所有功能,对每个功能进行属性参数配置,属性参数至少包括该功能的显示位置、名称以及图标,并依据每个功能的显示位置对所有功能进行排序。
进一步地,该系统还包括:
资源文件生成模块,设置为生成布局资源文件,并依据布局资源文件显示布局界面。
进一步地,每个功能的属性参数还包括该功能的标记、权限控制以及跳转动作。
进一步地,资源文件生成模块包括:
解析子模块,设置为对布局资源文件进行解析,生成布局界面;
显示子模块,设置为对布局界面进行显示。
本发明的上述方案至少包括以下有益效果:
本发明提供的基于Android的动态布局方法及系统,通过配置各个功能的属性参数来灵活的动态布局界面,功能布局模块与主界面分离,满足轻量化设计的要求,方便后期维护;布局资源文件是动态的,具有良好的拓展性,需要更改界面布局时,只需修改对应功能的属性参数即可,解决了静态的功能布局方式中,各功能顺序相对固定,无法灵活排序的局限性;在属性参数配置时,对各个功能的显示位置做了设定,避开了需要逻辑代码判断布局,降低了界面布局的复杂性。
附图说明
图1为本发明的实施例所述的基于Android的动态布局方法的步骤流程图;
图2为本发明的实施例所述的基于Android的动态布局系统的结构示意图。
具体实施方式
为使本发明要解决的技术问题、技术方案和优点更加清楚,下面将结合附图及具体实施例进行详细描述。
参见图1,本发明针对现有的问题,提供了一种基于Android的动态布局方法,该方法可以应用于一安装有安卓操作系统的终端设备,该终端设备具体可以是智能手机或平板电脑,该方法包括:
步骤101,获取当前用户针对一待布局应用的各个功能的权限参数。
步骤102,根据当前用户的权限参数,确定可以执行的可执行功能,进而获取可执行功能对应的属性参数,属性参数包括各个功能的显示位置、名称以及图标。
也就是说,只选择当前用户可执行的功能参与界面布局,避免了在android代码中通过判断条件来控制显示或者隐藏某一功能的繁琐程序,同时也使资源文件轻量化。
这里,获取可执行功能对应的属性参数可以从终端设备本地读取,或者是向一预定的远程服务器发起请求,等待远程服务器向终端设备反馈。
步骤103,根据可执行功能的属性参数,生成视图单元,并确定各个视图单元的显示顺序。
这里,根据可执行功能的属性参数中的图标找到对应的图片,根据名称找到对应的字符值,完成视图单元的构造,显示位置对视图单元进行排序。
步骤104,确定待布局应用的主界面中的视图单元的预留位置,根据显示顺序,在主界面添加各个视图单元。
这里,往往在同一应用上,不同的用户角色对各个功能有着不同的需求,本发明根据不同用户对各个功能的需求,显示用户所需的视图单元,使界面布局更加满足用户需求。进一步地,在获取当前用户针对一待布局应用的各个功能的权限参数的步骤之前,还包括:
获取待布局应用的所有功能,对每个功能进行属性参数配置,属性参数至少包括该功能的显示位置、名称以及图标,并依据每个功能的显示位置对所有功能进行排序;进一步地,每个功能的属性参数还包括该功能的标记、权限控制以及跳转动作。
由于本方法中,布局资源文件是动态的,因此,当某个功能的显示位置、名称、图标、标记、权限控制以及跳转动作等参数发生变化时,只需修改该功能的属性参数即可,无需修改资源文件。
进一步地,确定待布局应用的主界面中的视图单元的预留位置,根据显示顺序,在主界面添加各个视图单元的步骤之后,还包括:
生成布局资源文件,并依据布局资源文件显示布局界面。
进一步地,依据布局资源文件显示布局界面的步骤包括:
对布局资源文件进行解析,生成布局界面;
对布局界面进行显示。
这里,动态生成xml资源文件,应用直接对xml资源文件解析,呈现布局界面,进而实现动态控制Android的布局界面的效果。
本发明提供的基于Android的动态布局方法及系统,通过配置各个功能的属性参数来灵活的动态布局界面,功能布局模块与主界面分离,满足轻量化设计的要求,方便后期维护;在属性参数配置时,对各个功能的显示位置做了设定,避开了需要逻辑代码判断布局,降低了界面布局的复杂性。
参见图2,为了实现上述目的,本发明还提供了一种基于Android的动态布局系统,包括:
第一获取模块201,设置为获取当前用户针对一待布局应用的各个功能的权限参数;
第二获取模块202,设置为根据当前用户的权限参数,确定可以执行的可执行功能,进而获取可执行功能对应的属性参数,属性参数包括各个功能的显示位置、名称以及图标;
视图单元生成模块203,设置为根据可执行功能的属性参数,生成视图单元,并确定各个 视图单元的显示顺序;
视图单元添加模块204,设置为确定待布局应用的主界面中的视图单元的预留位置,根据显示顺序,在主界面添加各个视图单元。
进一步地,该系统还包括:
属性参数配置模块205,设置为获取待布局应用的所有功能,对每个功能进行属性参数配置,属性参数至少包括该功能的显示位置、名称以及图标,并依据每个功能的显示位置对所有功能进行排序。
进一步地,该系统还包括:
资源文件生成模块206,设置为生成布局资源文件,并依据布局资源文件显示布局界面。
进一步地,每个功能的属性参数还包括该功能的标记、权限控制以及跳转动作。
进一步地,资源文件生成模块206包括:
解析子模块2061,设置为对布局资源文件进行解析,生成布局界面;
显示子模块2062,设置为对布局界面进行显示。
需要说明的是,本发明提供的基于Android的动态布局系统是应用上述方法的装置,即上述方法的所有实施例均适用于该装置,且均能达到相同或相似的有益效果。
以上所述是本发明的优选实施方式,应当指出,对于本技术领域的普通技术人员来说,在不脱离本发明所述原理的前提下,还可以作出若干改进和润饰,这些改进和润饰也应视为本发明的保护范围。
工业实用性
基于本发明实施例提供的上述技术方案,通过配置各个功能的属性参数来灵活的动态布局界面,功能布局模块与主界面分离,满足轻量化设计的要求,方便后期维护;布局资源文件是动态的,具有良好的拓展性,需要更改界面布局时,只需修改对应功能的属性参数即可,解决了静态的功能布局方式中,各功能顺序相对固定,无法灵活排序的局限性;在属性参数配置时,对各个功能的显示位置做了设定,避开了需要逻辑代码判断布局,降低了界面布局的复杂性。

Claims (10)

  1. 一种基于Android的动态布局方法,包括:
    获取当前用户针对一待布局应用的各个功能的权限参数;
    根据所述当前用户的权限参数,确定可以执行的可执行功能,进而获取所述可执行功能对应的属性参数,所述属性参数包括各个功能的显示位置、名称以及图标;
    根据所述可执行功能的属性参数,生成视图单元,并确定各个视图单元的显示顺序;
    确定所述待布局应用的主界面中的视图单元的预留位置,根据所述显示顺序,在主界面添加各个视图单元。
  2. 如权利要求1所述的基于Android的动态布局方法,其中,在获取当前用户针对一待布局应用的各个功能的权限参数的步骤之前,还包括:
    获取待布局应用的所有功能,对每个功能进行属性参数配置,所述属性参数至少包括该功能的显示位置、名称以及图标,并依据每个功能的显示位置对所有功能进行排序。
  3. 如权利要求1所述的基于Android的动态布局方法,其中,所述确定所述待布局应用的主界面中的视图单元的预留位置,根据所述显示顺序,在主界面添加各个视图单元的步骤之后,还包括:
    生成布局资源文件,并依据所述布局资源文件显示布局界面。
  4. 如权利要求2所述的基于Android的动态布局方法,其中,所述每个功能的属性参数还包括该功能的标记、权限控制以及跳转动作。
  5. 如权利要求3所述的基于Android的动态布局方法,其中,所述依据所述布局资源文件显示布局界面的步骤包括:
    对所述布局资源文件进行解析,生成布局界面;
    对所述布局界面进行显示。
  6. 一种基于Android的动态布局系统,包括:
    第一获取模块,设置为获取当前用户针对一待布局应用的各个功能的权限参数;
    第二获取模块,设置为根据所述当前用户的权限参数,确定可以执行的可执行功能,进而获取所述可执行功能对应的属性参数,所述属性参数包括各个功能的显示位置、名称以及图标;
    视图单元生成模块,设置为根据所述可执行功能的属性参数,生成视图单元,并确定各个视图单元的显示顺序;
    视图单元添加模块,设置为确定所述待布局应用的主界面中的视图单元的预留位置,根据所述显示顺序,在主界面添加各个视图单元。
  7. 如权利要求6所述的基于Android的动态布局系统,其中,所述系统还包括:
    属性参数配置模块,设置为获取待布局应用的所有功能,对每个功能进行属性参数配置,所述属性参数至少包括该功能的显示位置、名称以及图标,并依据每个功能的显示位置对所有功能进行排序。
  8. 如权利要求6所述的基于Android的动态布局系统,其中,所述系统还包括:
    资源文件生成模块,设置为生成布局资源文件,并依据所述布局资源文件显示布局界面。
  9. 如权利要求7所述的基于Android的动态布局系统,其中,所述每个功能的属性参数还包括该功能的标记、权限控制以及跳转动作。
  10. 如权利要求8所述的基于Android的动态布局系统,其中,所述资源文件生成模块包括:
    解析子模块,设置为对所述布局资源文件进行解析,生成布局界面;
    显示子模块,设置为对所述布局界面进行显示。
PCT/CN2015/090183 2015-06-19 2015-09-21 一种基于Android的动态布局方法及系统 WO2016201813A1 (zh)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201510347176.9 2015-06-19
CN201510347176.9A CN106325658A (zh) 2015-06-19 2015-06-19 一种基于Android的动态布局方法及系统

Publications (1)

Publication Number Publication Date
WO2016201813A1 true WO2016201813A1 (zh) 2016-12-22

Family

ID=57544829

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2015/090183 WO2016201813A1 (zh) 2015-06-19 2015-09-21 一种基于Android的动态布局方法及系统

Country Status (2)

Country Link
CN (1) CN106325658A (zh)
WO (1) WO2016201813A1 (zh)

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108334386A (zh) * 2017-01-20 2018-07-27 阿里巴巴集团控股有限公司 一种视图组件的布局方法及系统
CN107741970B (zh) * 2017-10-09 2021-10-01 北京京东尚科信息技术有限公司 用于对主页面进行布局的方法和装置
CN114327656A (zh) * 2021-12-27 2022-04-12 杭州圆规网络科技有限公司 动态布局应用程序界面的方法以及装置、存储介质、电子装置

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020085020A1 (en) * 2000-09-14 2002-07-04 Carroll Thomas J. XML-based graphical user interface application development toolkit
CN103336691A (zh) * 2013-06-29 2013-10-02 安科智慧城市技术(中国)有限公司 一种基于Android的动态布局方法及系统
CN103440131A (zh) * 2013-08-30 2013-12-11 四川九洲电器集团有限责任公司 一种基于安卓系统的移动终端触摸屏视图布局调整方法
CN104239044A (zh) * 2014-09-05 2014-12-24 北京航天自动控制研究所 一种图形用户界面动态生成方法
CN104462979A (zh) * 2014-12-26 2015-03-25 深圳数字电视国家工程实验室股份有限公司 一种应用程序的自动化动态检测方法及装置
CN104484169A (zh) * 2014-12-09 2015-04-01 成都视达科信息技术有限公司 一种Android软件用户界面生成方法、系统及应用系统

Family Cites Families (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101882074A (zh) * 2010-03-15 2010-11-10 浪潮集团山东通用软件有限公司 一种用于图形用户界面组合及布局的方法与系统
CN104636643B (zh) * 2013-11-07 2017-12-01 华为技术有限公司 系统界面内容呈现控制方法及装置

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020085020A1 (en) * 2000-09-14 2002-07-04 Carroll Thomas J. XML-based graphical user interface application development toolkit
CN103336691A (zh) * 2013-06-29 2013-10-02 安科智慧城市技术(中国)有限公司 一种基于Android的动态布局方法及系统
CN103440131A (zh) * 2013-08-30 2013-12-11 四川九洲电器集团有限责任公司 一种基于安卓系统的移动终端触摸屏视图布局调整方法
CN104239044A (zh) * 2014-09-05 2014-12-24 北京航天自动控制研究所 一种图形用户界面动态生成方法
CN104484169A (zh) * 2014-12-09 2015-04-01 成都视达科信息技术有限公司 一种Android软件用户界面生成方法、系统及应用系统
CN104462979A (zh) * 2014-12-26 2015-03-25 深圳数字电视国家工程实验室股份有限公司 一种应用程序的自动化动态检测方法及装置

Also Published As

Publication number Publication date
CN106325658A (zh) 2017-01-11

Similar Documents

Publication Publication Date Title
WO2018072634A1 (zh) 应用程序处理方法和装置
JP6671483B2 (ja) スマートデバイスを制御するための方法および装置、ならびにコンピュータ記憶媒体
US9645989B2 (en) Techniques to generate custom electronic forms using custom content
US11157270B2 (en) Multi-platform pattern-based user interfaces
KR101368068B1 (ko) 데이터베이스 구축 방법, 이를 실행하는 데이터베이스 구축 서버 및 이를 저장한 기록 매체
US9934007B2 (en) Method for operating tool in working environment and machine using such method
US20200125540A1 (en) Self-correcting pipeline flows for schema drift
CN109766097A (zh) Ui生成方法、装置、电子设备及计算机可读存储介质
US11797273B2 (en) System and method for enhancing component based development models with auto-wiring
CN104424338A (zh) web系统的自动生成装置和自动生成方法
US20190005228A1 (en) Trusted and untrusted code execution in a workflow
CN109716735A (zh) 用于在于一个或多个应用平台上执行的隔离的应用之间共享应用数据的系统和方法
CN112506854B (zh) 页面模板文件的存储和页面生成方法、装置、设备及介质
WO2016201813A1 (zh) 一种基于Android的动态布局方法及系统
TW201610713A (zh) 在文件中識別且呈現相關報告實物
CN112015468A (zh) 一种接口文档处理方法、装置、电子设备以及存储介质
CN104834715A (zh) 一种基于部件和容器的网站生成方法及系统
US10732940B2 (en) Enterprise services framework for presentation layer management
US11126411B2 (en) Dashboard user interface for data driven applications
US11838294B2 (en) Method for identifying user, storage medium, and electronic device
TW201725542A (zh) 表單管理系統及方法
WO2018205390A1 (zh) 一种控件布局显示控制方法、系统、装置及计算机可读存储介质
CN114661274A (zh) 用于生成智能合约的方法和装置
CN106663007B (zh) 使工具运作于作业环境的方法以及应用该方法的机器
KR20200082024A (ko) 업무 화면 생성 방법 및 이를 수행하는 시스템

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: 15895386

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 15895386

Country of ref document: EP

Kind code of ref document: A1