WO2017107572A1 - 一种面向智能手表的Android应用重构方法 - Google Patents
一种面向智能手表的Android应用重构方法 Download PDFInfo
- Publication number
- WO2017107572A1 WO2017107572A1 PCT/CN2016/098295 CN2016098295W WO2017107572A1 WO 2017107572 A1 WO2017107572 A1 WO 2017107572A1 CN 2016098295 W CN2016098295 W CN 2016098295W WO 2017107572 A1 WO2017107572 A1 WO 2017107572A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- watch
- application
- android
- android application
- api
- 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.)
- Ceased
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/70—Software maintenance or management
- G06F8/72—Code refactoring
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/70—Software maintenance or management
- G06F8/71—Version control; Configuration management
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/70—Software maintenance or management
- G06F8/76—Adapting program code to run in a different environment; Porting
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/30—Creation or generation of source code
- G06F8/36—Software reuse
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; 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 invention is an Android application reconstruction method for a smart watch.
- the program analysis and reconstruction technology is used to reconstruct an Android application developed for a smart phone into an application suitable for a smart watch, and belongs to the field of software technology.
- an AndroidWear smartwatch application includes a mobile terminal Mobile module and a watch-side Wear module. The method re-packages a user-specified function from a mobile terminal to a Wear module to generate a smart watch application with a Wear module, thereby achieving rapid development and cost saving.
- the application structure is automatically adjusted.
- the AndroidWear app adds a Wear module (folder) running on the watch side to the Android app in the source structure.
- the method is based on the existing Android application source code for reconstruction.
- the script calls the new module function of AndroidStudio to automatically generate a Wear module (folder) with empty content, that is, a watch page containing only one empty Activity, and the script automatically modifies the AndroidManifest.xml file in the src directory of the Wear module, adding the pair of watches.
- API Application Programming Interface
- the method utilizes program analysis and refactoring to analyze the call of the underlying API of the Android system in the original Android application copied to the Wear module, and replaces the API in the original Android application with the API applicable to the Android Wear system of the watch.
- Some of the unique features of the mobile phone system are replaced by remote method calls (communication with Bluetooth), and the return value is obtained by calling the corresponding method in the Mobile module (folder) running on the mobile terminal.
- the existing common smart watch dials are available in both round and square shapes.
- the method provides a variety of automated adaptation options for developers to choose from. The simplest one is to reduce the overall page layout according to the corresponding proportion of the phone and the watch. Although this method is sufficient for some applications with few controls, if the number of controls is large, some controls on the page may be too small. Operation and user perception experience. Therefore, the method also provides two other adaptation schemes: list and card.
- the commonality of the two is to first identify all the unit controls of the page, such as lists, grids, paragraphs, tables, pictures, buttons, etc., for each unit control to reduce to the size of the screen width of the watch, and provide a default content-related Sexually sorts the importance of unit controls.
- the list-based adaptation scheme arranges the adapted unit controls into a list in a vertical order to generate an overall watch application page.
- the card-style adaptation scheme is to stack the unit control cards into card sets according to their importance.
- the invention reconstitutes the Android application to the application of the smart watch by semi-automatically, while ensuring high conversion quality and conversion efficiency, and reducing the development and maintenance cost of the smart watch application.
- Figure 1 is a flow chart of the method of the present invention
- Figure 2 is a 2048 game application page map
- the 2048 game is a puzzle game.
- the initial page has 16 grids. Two of the grids have two numbers 2 on it.
- the rule of operation is to select one of the up, down, left and right directions to slide each time. The number squares will move closer to the direction of the slide, and the system will randomly display a number box in the blank space. The squares of the same number will add up when they are close together and collide. Constantly stacking and finally figuring out the number of 2048 is a success.
- the custom layout file layout and the function function related to the layout file in the original Android application are migrated from the Mobile folder to the Wear module, and the API of the underlying Android system is analyzed by the program analysis means, and then the API is executed.
- Replacement for example, replace Notification.Builder with NotificationCompat.Builder; for some mobile phone system unique features, the API is replaced with a remote method call (communication with Bluetooth), and the return value is obtained by calling the corresponding method in the Mobile folder.
- the page is adapted.
- the custom layout and the textView control are arranged in order, and each control is scaled down according to the ratio of the mobile phone to the watch. Since the width and height information of each block of 2048 is hard coded in the code Medium, so you need to manually adjust to fit the watch screen size.
- the exit operation can be implemented by long press, and only need to add a long press callback function to the layout file to execute the exit.
Landscapes
- Engineering & Computer Science (AREA)
- Software Systems (AREA)
- General Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Computer Security & Cryptography (AREA)
- Stored Programmes (AREA)
- User Interface Of Digital Computer (AREA)
- Human Computer Interaction (AREA)
- Telephone Function (AREA)
Abstract
一种面向智能手表的Android应用重构方法。本方法为:1)对于一设定的Android应用,创建一空文件夹Mobile,将该应用的源文件都迁移到该Mobile文件夹中,然后在该应用的根目录下生成一Wear模块;2)在该Wear模块中添加支持手表特性的代码,以及添加手表的依赖库文件;并将该应用源码复制到该Wear模块中;3)将Wear模块中的API替换为手表应用的API;4)将该应用的整体页面布局按照手机与手表的对应比例进行缩小;或者先识别出该应用的页面中所有单元控件,然后将每个单元控件缩小至符合手表屏幕宽度的尺寸,并对单元控件重要性排序。本方法降低了智能手表应用的开发维护成本。
Description
本发明是一种面向智能手表的Android应用重构方法,利用程序分析与重构技术将针对智能手机开发的Android应用重构成适用于智能手表的应用,属于软件技术领域。
《2015年中国智能手表行业发展现状与未来前景分析》显示:智能手表或将成为自iPad引领的平板电脑时代之后,消费电子领域出现的又一个具有划时代意义的产品。目前主流的智能手表有搭载Watch OS的Apple Watch、AndroidWear系统的Gear、LG、Moto360等。以AndroidWear为例,智能手表的应用仍然比较缺乏,多数Android应用不能够简单地移植,因为智能手表屏幕尺寸小,交互方式与手机不同,并且具有更紧密地与传感器结合的特点。
针对上述问题,最直接的解决方案是重新开发一个面向智能手表的全新App。开发者基于Google AndroidWear的官方开发文档以及推荐的设计方式,使得应用可以针对智能手表的屏幕尺寸、操作方式和通讯方式,重新开发一个与原有智能手机应用对应的智能手表版本应用。虽然这种方式保证了应用的体验,但是也存在两方面问题:一方面,重新开发智能手表应用对于个人或中小型企业而言,开发成本和代价较大;另一方面,当需要修改应用内容时,必须同时修改Android版和AndroidWear版两个不同的应用,这将会增大维护成本。
由此可见,尽管重新开发一个智能手表版本的应用会使用户得到最好的体验,但是开发成本、维护成本都较大。因此,如何将既有Android手机应用半自动地转为智能手表应用是一个值得研究的技术问题。
发明内容
本发明的目的是提供一种面向智能手表的Android应用重构方法。其核心思想为:在重构时为既有Android手机应用拥有者(以下简称开发者)提供半自动转化技术,将Android手机应用重构为面向智能手表的Android Wear应用。根据Google Android Wear官方网站的描述,一个AndroidWear智能手表应用包括手机端Mobile模块与手表端Wear模块。本方法通过将用户指定的功能从手机端迁移至Wear模块重新打包生成一个带有Wear模块的智能手表应用,达到快速开发节约成本的目的。
本发明的技术方案为:
一种面向智能手表的Android应用重构方法。具体的重构过程的步骤为:
1)应用结构自动调整。AndroidWear应用在源码结构上相比于Android应用增加了运行于手表端的Wear模块(文件夹)。本方法是基于现有的Android应用源码的基础上进行重构的。首先通过Android Studio工具打开现有的Android应用项目(假定为A_Project),新建一个空文件夹命名Mobile,将项目源文件都迁移到Mobile模块(文件夹)中,然后在该项目的根目录下用脚本调用AndroidStudio的新建模块功能,自动生成一个内容为空的Wear模块(文件夹),即仅仅包含一个空Activity的手表页面,编写脚本自动修改Wear模块src目录下的AndroidManifest.xml文件,添加对手表特性的支持(具体添加代码为<uses-feature android:name="android.hardware.type.watch"/>),编写脚本修改build.gradle文件添加手表特有的依赖库文件(dependencies:com.google.android.support:wearable与com.google.android.gms:play-services-wearable);编写脚本复制一份原有的Android应用源码到Wear模块的src目录下。
2)应用编程接口(Application Programming Interface,API)的自动调整。本方法利用程序分析和重构,分析出复制到Wear模块的原有Android应用程序中对Android系统底层API的调用,将原有Android应用中的API替换为适用于手表Android Wear系统的API,对于部分手机系统独有特性的API则替换成远程方法调用(以蓝牙进行通信),通过调用运行于手机端的Mobile模块(文件夹)中的对应方法获取返回值。
3)应用界面布局的自动适配。现有常见的智能手表表盘有圆形与方形两种。本方法提供多种自动化适配方案供开发者选择。最简单的一种就是将整体页面布局按照手机与手表的对应比例进行缩小,虽然针对部分控件较少的应用此种方法已经足够,但是如果控件数目较多则可能导致页面某些控件太小影响操作及用户观感体验。因此本方法还提供了另外两种适配方案:列表式与卡片式。二者共同点在于首先识别出页面所有单元控件,例如列表、网格、段落、表格、图片、按钮等,对于每个单元控件缩小至符合手表屏幕宽度的尺寸,并提供一个默认的根据内容相关性进行单元控件重要性排序。列表式适配方案将适配好的单元控件按照顺序纵向排列成一个列表,生成总体的手表应用页面。卡片式适配方案是将单元控件卡片按照重要性层叠成卡片集。
4)应用参数值以及页面布局的手工调整。本方法以AndroidStudio插件形式支持以所见即所得的方式对应用参数值以及页面布局进行手工调整。在以上自动化API替换与页面布局适配中,转换的结果并一定能让开发者完全满意,例如API替换后参数个数变化,参数值的调整,页面自动化适配时控件识别错误,开发者希望更换适配方案等等。在手动调整的阶段,
开发者可以修改程序中用到的值包括values.xml以及上述步骤的API替换中涉及的参数,使得界面转换更加适合智能手表的屏幕;也可以手动更换页面布局的适配方案,并就适配方案的细节在单元控件的粒度上进行顺序的调整。
与现有技术相比,本发明的积极效果为:
本发明通过半自动地完成将Android应用重构成面向智能手表的应用,同时保证了较高的转换质量和转换效率,降低了智能手表应用的开发维护成本。
图1为本发明的方法流程图;
图2为2048游戏应用页面图
(a)手机应用页面,(b)智能手表应用页面。
本节以一个流行的Android应用“2048游戏”(https://github.com/plter/Android2048Game Lesson)为例进行面向智能手表的应用重构,其处理方法流程如图1所示。2048游戏是一款益智游戏,初始页面有16个格子,其中有两个格子上安放了两个数字2,其操作规则是每次可以选择上下左右其中一个方向去滑动,每滑动一次,所有的数字方块都会往滑动的方向靠拢外,系统也会在空白的地方随机出现一个数字方块,相同数字的方块在靠拢、相撞时会相加。不断的叠加最终拼凑出2048这个数字就算成功。
首先,对Android游戏2048的源码结构进行自动化调整,增加空Activity的Wear模块,修改AndroidManifest.xml文件添加对手表特性的支持(<uses-feature android:name="android.hardware.type.watch"/>)以及添加依赖库文件(com.google.android.support:wearable与com.google.android.gms:play-services-wearable)。
之后将原有Android应用中的自定义布局文件layout以及与布局文件相关的功能函数从Mobile文件夹迁移到Wear模块,借助程序分析手段,分析出应用中的调用Android系统底层的API,然后进行API的替换,例如,将Notification.Builder替换为NotificationCompat.Builder;对于部分手机系统独有特性的API则替换成远程方法调用(以蓝牙进行通信),通过调用Mobile文件夹中的对应方法获取返回值。
接下来进行页面的适配,本例将自定义layout与textView控件按照顺序排列,各个控件都进行按照手机对手表的比例进行缩小。由于2048每个方块的宽高信息是硬编码在代码之
中,因此需要手工调整以适应手表屏幕大小。此外,手表默认的滑动退出必须禁用,否则会与游戏操作中的滑动冲突,这个需要修改styles.xml文件,添加<item name="android:window SwipeToDismiss">false</item>。退出操作可以通过长按实现,只需要对layout文件添加一个长按回调函数执行退出即可。
最后,将Mobile模块与Wear模块一起编译打包生成一个适用于搭载AndroidWear系统的智能手表的APK文件,重构后的应用也放置在github上(https://github.com/ymifa/jike_wear2048),附图2是2048游戏在手机与手表上的截图。
Claims (6)
- 一种面向智能手表的Android应用重构方法,其步骤为:1)对于一设定的Android应用,创建一空文件夹Mobile,将该Android应用的源文件都迁移到该Mobile文件夹中,然后在该Android应用的根目录下生成一Wear模块;2)在该Wear模块中添加支持手表特性的代码,以及添加手表的依赖库文件;并将该Android应用源码复制到该Wear模块中;3)将复制到该Wear模块中的Android应用源码中的API替换为适用于手表Android Wear系统的API;4)将该Android应用的整体页面布局按照手机与手表的对应比例进行缩小;或者先识别出该Android应用的页面中所有单元控件,然后将每个单元控件缩小至符合手表屏幕宽度的尺寸,并对单元控件重要性排序。
- 如权利要求1所述的方法,其特征在于,所述步骤2)中,对于该Android应用源码中无法替换为适用于手表Android Wear系统中API的API,则通过调用该Mobile文件夹中对应方法获取返回值替换该API。
- 如权利要求1或2所述的方法,其特征在于,采用列表式或卡片式对排序后的单元控件进行展示。
- 如权利要求3所述的方法,其特征在于,以AndroidStudio插件形式支持以所见即所得的方式对该Android应用的整体页面布局的应用参数值以及页面布局进行手工调整。
- 如权利要求1或2所述的方法,其特征在于,所述根据内容相关性对单元控件进行重要性排序。
- 如权利要求1或2所述的方法,其特征在于,通过Android Studio工具打开该设定的Android应用,创建一文件夹Mobile。
Priority Applications (1)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US15/746,439 US20180285100A1 (en) | 2015-12-24 | 2016-09-07 | A method of refactoring Android applications for smart watches |
Applications Claiming Priority (2)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| CN201510983203.1 | 2015-12-24 | ||
| CN201510983203.1A CN105573764B (zh) | 2015-12-24 | 2015-12-24 | 一种面向智能手表的Android应用重构方法 |
Publications (1)
| Publication Number | Publication Date |
|---|---|
| WO2017107572A1 true WO2017107572A1 (zh) | 2017-06-29 |
Family
ID=55883940
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| PCT/CN2016/098295 Ceased WO2017107572A1 (zh) | 2015-12-24 | 2016-09-07 | 一种面向智能手表的Android应用重构方法 |
Country Status (3)
| Country | Link |
|---|---|
| US (1) | US20180285100A1 (zh) |
| CN (1) | CN105573764B (zh) |
| WO (1) | WO2017107572A1 (zh) |
Cited By (1)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN111399858A (zh) * | 2020-02-28 | 2020-07-10 | 平安科技(深圳)有限公司 | 安卓应用程序包打包方法、设备、存储介质及装置 |
Families Citing this family (7)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN105573764B (zh) * | 2015-12-24 | 2019-03-22 | 北京大学 | 一种面向智能手表的Android应用重构方法 |
| CN109445956B (zh) * | 2018-09-19 | 2022-07-22 | 北京大学 | 一种面向智能手表应用的云-端计算分载方法 |
| CN110069294B (zh) * | 2019-04-28 | 2024-09-20 | 努比亚技术有限公司 | 第三方应用适应的配置方法、系统、可穿戴设备及介质 |
| CN110162375A (zh) * | 2019-05-30 | 2019-08-23 | 努比亚技术有限公司 | 界面显示方法、穿戴式设备及可读存储介质 |
| CN114003241B (zh) * | 2020-07-28 | 2025-07-01 | 华为技术有限公司 | 应用程序的界面适配显示方法、系统、电子设备和介质 |
| CN114265540B (zh) * | 2020-09-15 | 2024-06-11 | 华为技术有限公司 | 一种电子设备的滑动控制方法及电子设备 |
| CN112269527B (zh) * | 2020-11-16 | 2022-07-08 | Oppo广东移动通信有限公司 | 应用界面的生成方法及相关装置 |
Citations (8)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20110143741A1 (en) * | 2005-07-19 | 2011-06-16 | AOL Inc., | System and method for cross-platform applications on a wireless phone |
| CN102622217A (zh) * | 2011-01-30 | 2012-08-01 | 中兴通讯股份有限公司 | 一种跨屏运行应用的方法及系统 |
| CN103164197A (zh) * | 2011-12-14 | 2013-06-19 | 中兴通讯股份有限公司 | Ui布局自适应方法、移动设备以及布局生成设备 |
| CN103345388A (zh) * | 2013-06-05 | 2013-10-09 | 中国电子科技集团公司第十五研究所 | 基于安卓操作系统的软件适应移动终端的方法及装置 |
| CN104572042A (zh) * | 2013-10-15 | 2015-04-29 | 航天信息股份有限公司 | 移动终端设备的跨平台中间件装置及其实现方法 |
| CN105068813A (zh) * | 2015-08-19 | 2015-11-18 | 北京奇虎科技有限公司 | 一种提供安卓包apk修改服务的方法和装置 |
| CN105183524A (zh) * | 2015-09-29 | 2015-12-23 | 上海斐讯数据通信技术有限公司 | 一种可选择应用字体的Android安装方法和装置 |
| CN105573764A (zh) * | 2015-12-24 | 2016-05-11 | 北京大学 | 一种面向智能手表的Android应用重构方法 |
Family Cites Families (45)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US6789076B1 (en) * | 2000-05-11 | 2004-09-07 | International Business Machines Corp. | System, method and program for augmenting information retrieval in a client/server network using client-side searching |
| US20050091511A1 (en) * | 2000-05-25 | 2005-04-28 | Itay Nave | Useability features in on-line delivery of applications |
| US6842905B2 (en) * | 2001-03-29 | 2005-01-11 | International Business Machines Corporation | Method and system for implementing collection program interface for accessing a collection of data associated with a legacy enumeration application interface |
| WO2003077104A1 (en) * | 2002-03-08 | 2003-09-18 | Nokia Corporation | Method and deice for providing a representation of applications for display on an electronic device |
| US7484200B2 (en) * | 2002-08-14 | 2009-01-27 | National Instruments Corporation | Automatically analyzing and modifying a graphical program |
| FR2843640B1 (fr) * | 2002-08-16 | 2010-03-19 | Systeam | Procede de generation, de transmission et de traitement de documents |
| US8091071B2 (en) * | 2006-08-21 | 2012-01-03 | Sap, Ag | Method and system for template-based code generation |
| JP2009181501A (ja) * | 2008-01-31 | 2009-08-13 | Toshiba Corp | 移動通信機器 |
| US8566787B2 (en) * | 2008-09-15 | 2013-10-22 | Infosys Limited | System and method for improving modularity of large legacy software systems |
| US20100281475A1 (en) * | 2009-05-04 | 2010-11-04 | Mobile On Services, Inc. | System and method for mobile smartphone application development and delivery |
| US8266153B2 (en) * | 2009-10-09 | 2012-09-11 | Oracle International Corporation | Determining and displaying application server object relevance |
| US8713027B2 (en) * | 2009-11-18 | 2014-04-29 | Qualcomm Incorporated | Methods and systems for managing electronic messages |
| US9336023B2 (en) * | 2009-12-18 | 2016-05-10 | Sybase, Inc. | Visual generation of mobile applications based on data models |
| US8694968B2 (en) * | 2009-12-30 | 2014-04-08 | Foneclay, Inc. | System for creating personalized and customized mobile devices |
| US20120060149A1 (en) * | 2010-09-03 | 2012-03-08 | Brad Kimura | Integrated multimedia application for mobile devices |
| US20120151413A1 (en) * | 2010-12-08 | 2012-06-14 | Nokia Corporation | Method and apparatus for providing a mechanism for presentation of relevant content |
| KR101312954B1 (ko) * | 2011-03-31 | 2013-10-01 | 주식회사 리코시스 | 3차원 테마를 표현하는 커버페이지를 제공하는 사용자 인터페이스 장치 및 그 구동 방법 |
| US8261231B1 (en) * | 2011-04-06 | 2012-09-04 | Media Direct, Inc. | Systems and methods for a mobile application development and development platform |
| US9134964B2 (en) * | 2011-04-06 | 2015-09-15 | Media Direct, Inc. | Systems and methods for a specialized application development and deployment platform |
| JP5941541B2 (ja) * | 2011-04-11 | 2016-06-29 | ラケシュ、シャールマRakesh Sharrma | モバイル・アプリケーション開発のためのシステムおよび方法 |
| CN102364433B (zh) * | 2011-06-24 | 2014-01-01 | 浙大网新科技股份有限公司 | 在ARM处理器上实现Wine构建工具移植的方法 |
| CN102929593B (zh) * | 2011-08-12 | 2016-01-06 | 中国科学院声学研究所 | 一种Android系统兼容内置应用的方法 |
| US9760236B2 (en) * | 2011-10-14 | 2017-09-12 | Georgia Tech Research Corporation | View virtualization and transformations for mobile applications |
| US8910115B2 (en) * | 2012-04-02 | 2014-12-09 | Kony Solutions, Inc. | Systems and methods for application development |
| US9417753B2 (en) * | 2012-05-02 | 2016-08-16 | Google Technology Holdings LLC | Method and apparatus for providing contextual information between operating system environments |
| US20140026039A1 (en) * | 2012-07-19 | 2014-01-23 | Jostens, Inc. | Foundational tool for template creation |
| US8813028B2 (en) * | 2012-07-19 | 2014-08-19 | Arshad Farooqi | Mobile application creation system |
| US9971585B2 (en) * | 2012-10-16 | 2018-05-15 | Citrix Systems, Inc. | Wrapping unmanaged applications on a mobile device |
| US20140137090A1 (en) * | 2012-11-12 | 2014-05-15 | Sgn Games, Inc. | System and method of cross-platform software development and compilation |
| US9038019B2 (en) * | 2013-02-05 | 2015-05-19 | Sap Se | Paige control for enterprise mobile applications |
| KR101427562B1 (ko) * | 2013-03-08 | 2014-08-07 | 주식회사 인프라웨어테크놀러지 | 안드로이드 어플리케이션의 타이젠 설치가능 패키지 자동변환 방법 및 이를 위한 컴퓨터로 판독가능한 기록매체 |
| US20140282371A1 (en) * | 2013-03-14 | 2014-09-18 | Media Direct, Inc. | Systems and methods for creating or updating an application using a pre-existing application |
| US20140282493A1 (en) * | 2013-03-15 | 2014-09-18 | Quixey, Inc | System for replicating apps from an existing device to a new device |
| US10320885B2 (en) * | 2013-03-15 | 2019-06-11 | Gadget Software, Inc. | Method for single workflow for multi-platform mobile application creation and delivery |
| EP2976709B1 (en) * | 2013-03-18 | 2018-10-03 | Cloudmask | Systems and methods for intercepting, processing, and protecting user data through web application pattern detection |
| US10127023B2 (en) * | 2013-09-20 | 2018-11-13 | Oracle International Corporation | Computer-aided development of native mobile application code |
| US20160026366A1 (en) * | 2014-07-22 | 2016-01-28 | Runfeng LUAN | Method and system for customizing mobile terminal application |
| US9268562B1 (en) * | 2015-01-21 | 2016-02-23 | PredictSpring, Inc. | Methods and apparatuses for dynamically generating mobile application layouts using client-independent configuration |
| US9612805B2 (en) * | 2015-05-27 | 2017-04-04 | Sap Se | Rapid mobile app generator |
| US9886246B2 (en) * | 2015-07-13 | 2018-02-06 | International Business Machines Corporation | Dynamically building mobile applications |
| EP4044022A1 (en) * | 2015-07-30 | 2022-08-17 | Wix.com Ltd. | System integrating a mobile device application creation, editing and distribution system with a website design system |
| US20170052780A1 (en) * | 2015-08-21 | 2017-02-23 | Zih Corp. | Methods and Apparatus to Adapt Legacy Applications to Target Platforms |
| US20170097814A1 (en) * | 2015-10-02 | 2017-04-06 | Microsoft Technology Licensing, Llc | Automatic multi-platform mobile application development |
| US9747145B2 (en) * | 2015-10-08 | 2017-08-29 | Ca, Inc. | Mobile application configuration agnostic to operating system versions |
| US9886272B1 (en) * | 2016-12-05 | 2018-02-06 | Sap Se | Transformation of a web application into a hybrid mobile application |
-
2015
- 2015-12-24 CN CN201510983203.1A patent/CN105573764B/zh active Active
-
2016
- 2016-09-07 WO PCT/CN2016/098295 patent/WO2017107572A1/zh not_active Ceased
- 2016-09-07 US US15/746,439 patent/US20180285100A1/en not_active Abandoned
Patent Citations (8)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20110143741A1 (en) * | 2005-07-19 | 2011-06-16 | AOL Inc., | System and method for cross-platform applications on a wireless phone |
| CN102622217A (zh) * | 2011-01-30 | 2012-08-01 | 中兴通讯股份有限公司 | 一种跨屏运行应用的方法及系统 |
| CN103164197A (zh) * | 2011-12-14 | 2013-06-19 | 中兴通讯股份有限公司 | Ui布局自适应方法、移动设备以及布局生成设备 |
| CN103345388A (zh) * | 2013-06-05 | 2013-10-09 | 中国电子科技集团公司第十五研究所 | 基于安卓操作系统的软件适应移动终端的方法及装置 |
| CN104572042A (zh) * | 2013-10-15 | 2015-04-29 | 航天信息股份有限公司 | 移动终端设备的跨平台中间件装置及其实现方法 |
| CN105068813A (zh) * | 2015-08-19 | 2015-11-18 | 北京奇虎科技有限公司 | 一种提供安卓包apk修改服务的方法和装置 |
| CN105183524A (zh) * | 2015-09-29 | 2015-12-23 | 上海斐讯数据通信技术有限公司 | 一种可选择应用字体的Android安装方法和装置 |
| CN105573764A (zh) * | 2015-12-24 | 2016-05-11 | 北京大学 | 一种面向智能手表的Android应用重构方法 |
Cited By (2)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN111399858A (zh) * | 2020-02-28 | 2020-07-10 | 平安科技(深圳)有限公司 | 安卓应用程序包打包方法、设备、存储介质及装置 |
| CN111399858B (zh) * | 2020-02-28 | 2024-04-02 | 平安科技(深圳)有限公司 | 安卓应用程序包打包方法、设备、存储介质及装置 |
Also Published As
| Publication number | Publication date |
|---|---|
| CN105573764B (zh) | 2019-03-22 |
| US20180285100A1 (en) | 2018-10-04 |
| CN105573764A (zh) | 2016-05-11 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| WO2017107572A1 (zh) | 一种面向智能手表的Android应用重构方法 | |
| US10990367B2 (en) | Application development method, tool, and device, and storage medium | |
| CN105511873B (zh) | 用户界面控件展示方法及装置 | |
| Böhmer et al. | A study on icon arrangement by smartphone users | |
| CN111177621B (zh) | 一种web页面开发方法、装置及系统 | |
| CN105528418B (zh) | 一种设计文档生成方法及装置 | |
| CN110209650A (zh) | 数据规整迁移方法、装置、计算机设备和存储介质 | |
| CN108304329B (zh) | 一种测试用例的设计方法、装置、终端及可读存储介质 | |
| CN104317587A (zh) | 面向安卓移动设备的程序自动生成方法 | |
| US20170286068A1 (en) | Development support system | |
| CN108388515A (zh) | 测试数据生成方法、装置、设备以及计算机可读存储介质 | |
| CN104426967A (zh) | 一种跨平台和跨设备的移动应用构建方法 | |
| JP2018508081A (ja) | 入力シリアルの処理方法、装置、デバイス及び不発揮性コンピュータ記憶媒体 | |
| CN112988165A (zh) | 基于Kubernetes的交互式建模方法、装置、电子设备及存储介质 | |
| CN101226479A (zh) | 一种实现手机菜单动态配置的方法 | |
| CN110647322A (zh) | 列表渲染方法、装置、电子设备和计算机可读介质 | |
| CN108200070A (zh) | 一种生成榜单的方法及装置 | |
| TW201308108A (zh) | 功能表工具條整合系統及方法 | |
| CN118733923A (zh) | 基于人工智能的自适应ui组件库系统及实现方法 | |
| US11126410B2 (en) | Method and apparatus for building pages, apparatus and non-volatile computer storage medium | |
| CN106681704A (zh) | 用户界面的开发装置和开发方法 | |
| CN113918850A (zh) | 样式自动纠偏的方法、电子设备及存储介质 | |
| CN113656005A (zh) | 应用组件库构建方法、应用组件配置方法及相关装置 | |
| TWI718429B (zh) | 適應性調整使用者介面中資訊量的方法及其電子裝置 | |
| CN111026437A (zh) | 一种基于Unity的资源包处理方法及装置 |
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: 16877383 Country of ref document: EP Kind code of ref document: A1 |
|
| WWE | Wipo information: entry into national phase |
Ref document number: 15746439 Country of ref document: US |
|
| NENP | Non-entry into the national phase |
Ref country code: DE |
|
| 122 | Ep: pct application non-entry in european phase |
Ref document number: 16877383 Country of ref document: EP Kind code of ref document: A1 |