WO2020119800A1 - 一种列表显示方法、装置、设备及存储介质 - Google Patents

一种列表显示方法、装置、设备及存储介质 Download PDF

Info

Publication number
WO2020119800A1
WO2020119800A1 PCT/CN2019/125316 CN2019125316W WO2020119800A1 WO 2020119800 A1 WO2020119800 A1 WO 2020119800A1 CN 2019125316 W CN2019125316 W CN 2019125316W WO 2020119800 A1 WO2020119800 A1 WO 2020119800A1
Authority
WO
WIPO (PCT)
Prior art keywords
cell
instance
list
displayed
data
Prior art date
Application number
PCT/CN2019/125316
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 WO2020119800A1 publication Critical patent/WO2020119800A1/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
    • G06F3/0482Interaction with lists of selectable items, e.g. menus
    • 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/0487Interaction techniques based on graphical user interfaces [GUI] using specific features provided by the input device, e.g. functions controlled by the rotation of a mouse with dual sensing arrangements, or of the nature of the input device, e.g. tap gestures based on pressure sensed by a digitiser
    • G06F3/0488Interaction techniques based on graphical user interfaces [GUI] using specific features provided by the input device, e.g. functions controlled by the rotation of a mouse with dual sensing arrangements, or of the nature of the input device, e.g. tap gestures based on pressure sensed by a digitiser using a touch-screen or digitiser, e.g. input of commands through traced gestures
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code

Definitions

  • the present disclosure relates to the technical field of application program development, and in particular, to a list display method, device, device, and storage medium.
  • UITableView When developing mobile applications based on the iOS operating system, developers often use list methods to display application content.
  • the iOS system provides developers with three lists, namely UITableView, UICollectionView and UIScrollView, of which the first two lists are based on the third list, UITableView is a vertical sliding list, and the sliding direction of UICollectionView can be horizontal and vertical Choose between the two, and UIScrollView can slide in both horizontal and vertical directions.
  • UITableView In the process of application development, developers often choose UITableView and UICollectView to make development more convenient.
  • the creation and development stages of UITableView and UICollectView are basically the same, which can be summarized as follows:
  • Step 1 Use native language to define various types of list cell types (Cell), and the number of cell types in complex lists can be as many as 20 or more;
  • Step 2 Layout the subviews of various cell types in Step 1;
  • Step 3 Add data processing logic for the various cell types in Step 1;
  • Step 4 Add event processing logic to the various cell types in step 1;
  • Step 5 Create a list instance and set list properties, such as background color, layout type, sliding direction, etc.;
  • Step 6 Register all cell types defined in Step 1 with the list instance;
  • Step 7 Implement the data source agent and event callback agent of the list instance
  • Step 8 Complete the creation of the list.
  • the definition of the list cell type must precede the creation of the list, that is to say, the list cell type and the creation of the list are strongly related, in a multi-business team collaborative development environment
  • the business of the list may be completed by multiple business teams. The different business progress of the team will cause the teams to rely on each other, which is not conducive to the collaborative promotion of the business, and it is also not conducive to dynamically inserting a new cell (Cell) style, which cannot meet the needs.
  • the client After creating the list, the client generates a cell instance according to the definition data of the cell type solidified in the code, and renders the display, which has a single display effect and lacks flexibility.
  • the present disclosure provides a list display method, device, device, and storage medium to improve the flexibility of list configuration and realize the diversity of list display.
  • a list display method including:
  • each cell description file stores metadata corresponding to at least one cell type, and the metadata includes sub-view hierarchical structure information And attribute setting information;
  • the data to be displayed renders and displays the created cell instance.
  • the method further includes:
  • the cell instance is released, the cell instance is recovered, and the cell instance and the cell type corresponding to the cell instance are cached, so that when the cell of the same type needs to be displayed later, the cached Cell instance and render and display the cell instance read.
  • rendering and displaying the cell instance according to the data to be displayed includes:
  • Determining the layout parameters of each subview in the cell instance the layout parameters including the size parameter of the subview and the position parameter of the subview in the cell;
  • the method further includes: adding a touch behavior processing function to the subview of the cell instance;
  • the method further includes:
  • the method before acquiring the data to be displayed and the cell type corresponding to the cell to be displayed of the list instance according to the data source information in the list instance to be displayed, the method further includes:
  • the creation parameters include: the type of the list instance to be created and the event processing object, the event processing object is used for the touch operation on the controls of each cell in the list instance Be processed;
  • a list instance is created according to the input creation parameters.
  • the structured language is JavaScript object markup JASON language or Extensible Markup Language XML.
  • a cell description file loader Loader load and parse at least one pre-generated cell description file in a structured language
  • the cell generator creates a cell instance according to the metadata of the cell type corresponding to the cell to be displayed.
  • a list display device including:
  • a to-be-displayed data obtaining module configured to obtain to-be-displayed data and cell types corresponding to the to-be-displayed cells of the list instance according to the data source information in the to-be-displayed list instance;
  • the cell description file loading module is used to load and parse at least one pre-generated cell description file in structured language, wherein each cell description file stores metadata corresponding to at least one cell type.
  • the metadata includes sub-hierarchy structure information and attribute setting information;
  • the cell instance display module is used to create a cell instance according to the metadata of the cell type corresponding to the cell to be displayed, and render and display the cell instance according to the data to be displayed.
  • the device further includes:
  • the cell instance cache module is used to create a cell instance according to the metadata of the cell type corresponding to the cell to be displayed, and if the cell instance is released, the cell instance is recovered and the cell is cached The cell instance and the cell type corresponding to the cell instance, so that when a cell of the same type needs to be displayed later, the cached cell instance is read and the read and rendered cell instance is rendered and displayed.
  • the cell description file loading module is specifically used for:
  • Determining the layout parameters of each subview in the cell instance the layout parameters including the size parameter of the subview and the position parameter of the subview in the cell; according to the layout parameter and the data to be displayed, the cell The instance is rendered and displayed, and the layout parameters are cached, so that subsequent use of the cached layout parameters renders the same type of cell instance.
  • the device further includes:
  • a touch behavior processing function adding module used to create a cell instance, the method further includes: adding a touch behavior processing function to a subview of the cell instance;
  • the device also includes:
  • the event processing object calling module is used to detect the touch operation for the displayed subview through the touch behavior processing function after rendering and displaying the cell instance according to the data to be displayed, and After detecting the touch operation, the information of the touch operation is used as an input parameter to call an event processing object set in advance for the list instance to process the touch operation.
  • the device further includes:
  • the list instance creation module is used to create a list instance according to the input creation parameters before acquiring the data to be displayed and the cell type corresponding to the cell to be displayed of the list instance according to the data source information in the list instance to be displayed,
  • the creation parameters include: a list instance type to be created and an event processing object, where the event processing object is used to process a touch operation for each control in each cell in the list instance;
  • the data source information loading module is configured to call the data source loading interface of the list instance to load data source information.
  • the list instance creation module is specifically used to create a list instance according to the input creation parameters by calling a list creation function in the list factory Factory.
  • the structured language is JavaScript object markup JASON language or Extensible Markup Language XML.
  • the cell description file loading module is specifically used to load and parse at least one pre-generated cell description file in a structured language through a cell description file loader Loader;
  • the cell instance display module includes a cell instance creation module, which is used to create a cell instance based on the metadata of the cell type corresponding to the cell to be displayed by the cell generator.
  • a terminal device including:
  • One or more processors are One or more processors;
  • Memory used to store one or more programs
  • the one or more processors When the one or more programs are executed by the one or more processors, the one or more processors implement the list display method as provided in any embodiment of the present disclosure.
  • an embodiment of the present disclosure also provides a computer storage medium on which a computer program is stored, which when executed by a processor implements the list display method provided by any embodiment of the present disclosure.
  • the embodiment of the present disclosure uses a structured language to define the cell type in advance to form a cell description file instead of using a native language, so that the cell type can be loaded and registered lagging, so that during operation, when the pending After displaying the data to be displayed corresponding to the cell, you can obtain the metadata of the cell type corresponding to the cell to be displayed by loading and parsing the cell description file, and you can add the new cell type to the cell description file.
  • the list can be dynamically and flexibly configured, so that it can be displayed according to business needs, which improves the flexibility of list configuration and realizes the diversity of list display.
  • FIG. 1 shows a flowchart of a list display method according to an embodiment of the present disclosure
  • FIG. 2 shows a flowchart of a list display method according to another embodiment of the present disclosure
  • FIG. 3 shows a flowchart of a list display method according to yet another embodiment of the present disclosure
  • FIG. 4 shows a schematic structural diagram of a list display device according to an embodiment of the present disclosure
  • FIG. 5 shows a schematic diagram of a hardware structure of a terminal device according to an embodiment of the present disclosure.
  • each embodiment also provides optional features and examples.
  • the various features described in the embodiments can be combined to form multiple optional solutions.
  • Each numbered embodiment should not be regarded as As a technical solution.
  • FIG. 1 shows a flowchart of a method for displaying a list according to an embodiment of the present disclosure.
  • the embodiment of the present disclosure may be applicable to a case where a list is displayed in an application based on an iOS system.
  • the method may be executed by a list display device.
  • the device can be implemented by means of software and/or hardware, and integrated in a terminal with a display function, such as a smart phone, a tablet computer, etc.
  • the list display method provided in the embodiment of the present disclosure specifically includes the following steps:
  • the list instance may refer to a list created and developed in advance.
  • the data source information in the list instance may refer to the information of the database or database server used by the list instance, and may include but not limited to the name of the data source.
  • the list instance may include one or more cells to be displayed, and the number of cells to be displayed may be predetermined according to business requirements.
  • an identifier may be set for each cell type for unique identification, so as to distinguish different cell types.
  • the list database corresponding to the list instance can be connected according to the data source information in the list instance, so that the data to be displayed corresponding to each cell to be displayed in the list instance to be displayed can be obtained from the list database And the corresponding cell type.
  • each cell description file stores metadata corresponding to at least one cell type
  • the metadata includes sub-view hierarchical structure information and attributes Set the information.
  • the structured language may be, but not limited to, JavaScript Object Markup JSON (JavaScript Object Notation) language or Extensible Markup Language XML (Extensible Markup Language).
  • Metadata for all cell types corresponding to the list can be stored in only one cell description file, or can be distributed and stored in multiple cell description files, so that in the case of multi-business team collaboration, different business teams can provide their own
  • the cell description file enables different businesses to advance in parallel.
  • Each cell description file can store metadata corresponding to one or more cell types.
  • the sub-view hierarchical structure information may refer to hierarchical relationship information between multiple sub-views contained in a cell.
  • the attribute setting information may include, but not limited to, color, font, font size, and font style.
  • the structured language can be used to describe the metadata corresponding to each cell type in advance, and the metadata corresponding to all the described cell types can be stored in one or more cell description files, so that Cell type definition and list creation are decoupled so that the cell type can be loaded and registered lagging.
  • the metadata corresponding to each cell type can be dynamically obtained .
  • a global unique identifier may be assigned to each cell type, so as to query metadata corresponding to the cell type from the cell description file.
  • the metadata corresponding to the new cell type can be described in a structured language, and the metadata after the description is added to the cell description file to update the cell Cell description file, so that when the list is displayed, the updated cell description file can be loaded and parsed to obtain metadata corresponding to the new cell type, so that the list can be dynamically and flexibly during the operation phase of the list Local configuration, which improves the flexibility of list configuration.
  • the cell instance is rendered and displayed according to the data to be displayed.
  • the metadata of the cell type corresponding to the cell to be displayed can be obtained from the parsed cell description file through the unique identifier of the cell type corresponding to the cell to be displayed.
  • the parent-child relationship between the lattice views of the cells to be displayed can be established, thereby forming a sub-view hierarchy tree of the cells to be displayed, and the cells can be created according to the parsed attribute setting information and the sub-view hierarchy tree Examples.
  • the cell instance corresponding to the cell to be displayed is created, the cell instance can be rendered according to the data to be displayed corresponding to the cell to be displayed, so that the rendered cell can be displayed on the display interface.
  • each cell to be displayed in the list instance can be rendered and displayed by performing the operation of step S130, thereby realizing display of the list.
  • the cell type is defined in advance by using a structured language to form a cell description file, instead of using a native language, so that the cell type can be loaded and registered lagging, so that during operation, when the list is obtained
  • the metadata of the cell type corresponding to the cell to be displayed can be obtained by loading and parsing the cell description file, and new data can be added to the cell description file
  • the list is dynamically and flexibly configured, so that it can be displayed according to business needs, the flexibility of the list configuration is improved, and the diversity of the list display is realized.
  • S130 after creating a cell instance according to the metadata of the cell type corresponding to the cell to be displayed, it may further include:
  • the cell instance is released, the cell instance is recovered, the cell instance and the cell type corresponding to the cell instance are cached, so that when the cell of the same type needs to be displayed later, the cached cell is read Instance and render and display the read cell instance.
  • the cell instance when the cell instance is released after being used, the cell instance can be recovered, and the cell instance and the cell type corresponding to the cell instance can be cached, so that when the cells of the same type need to be displayed later, You can directly read the cached cell instance without recreating the cell instance of the cell type, which can reduce the creation time of the cell and improve the sliding performance of the list.
  • the cache mechanism of the cell instance by setting the cache mechanism of the cell instance, the reuse degree and creation speed of the cell instance can be improved, thereby improving the sliding performance of the list.
  • rendering and displaying the cell instance according to the data to be displayed in S130 may include: determining the layout parameters of each subview in the cell instance, where the layout parameters include the size parameter of the subview and the subview in Position parameters in cells; render and display cell instances based on layout parameters and data to be displayed, and cache layout parameters so that subsequent use of cached layout parameters will render cell instances of the same type.
  • the size parameters of the sub-view may include but are not limited to the height and width of the sub-view.
  • the position parameter of the subview in the cell may refer to the display position information of the subview on the display interface. Specifically, in this embodiment, according to the data source information in the list instance, in the list database corresponding to the list instance, the preset view size of each subview and the relative positional relationship between the subview and the parent view can be obtained, so that The view size of the subview and the interface size of the display interface are calculated to obtain the size parameter of each subview displayed in the display interface, and the position parameter of each subview in the cell is calculated according to the relative positional relationship between the subview and the parent view.
  • the layout parameters of each subview in the cell instance corresponding to the cell to be displayed can be cached, so that when the cell instance corresponding to the same cell type needs to be explicitly rendered later, the corresponding cell instance corresponding to the cached cell instance can be directly used
  • layout parameters there is no need to repeatedly determine the layout parameters corresponding to the cell instance, so that the cache performance of the list can be further improved by caching the layout parameters corresponding to the cell instance.
  • the method further includes: adding a touch behavior processing function to the subview of the cell instance; accordingly, after S130, it may further include: processing through the touch behavior The function detects the touch operation for the displayed subview, and after detecting the touch operation, uses the touch operation information as an input parameter and calls the event processing object set in advance for the list instance to process the touch operation.
  • the touch behavior processing function may be a function defined in advance for detecting whether there is a touch operation.
  • the touch operation may be but not limited to touch behavior or click behavior.
  • the event processing object may be preset and used to logically process the touch operation of the control in the subview in the list instance.
  • the developer can set in advance whether the subview in the cell instance accepts the user's touch operation according to business requirements, and store the specified subview information that needs to receive the user's touch operation in the cell description file.
  • you can add a touch behavior processing function for each specified subview in the cell instance according to the specified subview information in the cell description file that needs to accept the user's touch operation, so that the cell can be automatically opened
  • the touch operation of the specified subview in the example makes the operation more convenient.
  • the touch behavior processing function After the list is displayed, you can use the touch behavior processing function to detect whether the specified subview is touched. If a touch operation is detected, you can call the event processing object to pass the detected touch operation through a unique event The exit is transmitted to the business party, and the business party distributes and processes the corresponding event, so that the touch operation can be uniformly transmitted to the business party through the event processing object. Compared with the event of the cell in the regular list of the iOS system, the developer needs to distribute the processing when the cell type is defined. To pass these cell events to the business party through the proxy method, the processing method of this embodiment does not need to be The event callback agent is repeatedly implemented in different business use lists, which makes the operation more convenient and fast, and is conducive to improving development efficiency.
  • FIG. 2 shows a flowchart of a method for displaying a list according to an embodiment of the present disclosure.
  • This embodiment is optimized on the basis of the various alternatives in the above embodiments: the display to be displayed corresponds to the cell to be displayed corresponding to the list instance Before the data and cell types, "create a list instance based on the input creation parameters and call the data source loading interface of the list instance to load the data source information" was added. The explanation of terms that are the same as or corresponding to those in the above embodiments will not be repeated here.
  • the list display method provided in the embodiment of the present disclosure specifically includes the following steps:
  • S210 Create a list instance according to the input creation parameters, where the creation parameters include: the type of list instance to be created and an event processing object.
  • the event processing object is used to process the touch operation for each control in each cell in the list instance.
  • the list instance type may be a bottom list type specified in advance according to business requirements.
  • the event processing object can also be pre-specified according to business requirements, and is used to process the touch operation of each control in each cell in the list instance.
  • the controls in the cell refer to the parts that can be touched, such as the like button.
  • a list instance is created according to the input creation parameters.
  • the list creation function may be pre-defined in the List Factory Factory, and is used to create a list instance according to the input creation parameters.
  • the List Factory is implemented based on the built-in list in the iOS system.
  • the underlying list supports the UITableView, UICollectionView, or UIScrollView list of the iOS system. Developers can create list instances through the list creation function in the List Factory Factory.
  • the input creation parameter can be used as the function input parameter to call the list creation function in the list factory Factory, so that the corresponding list instance can be created more conveniently.
  • the List Factory Factory in this embodiment can uniformly implement the list's data source agent and event callback agent, so that only the list creation function in the List Factory Factory can be used to create a list instance to run the list, which can further Reduce the workload of developers, and further improve development efficiency.
  • the List Factory in this embodiment can shield the differences between the regular lists based on the iOS system, so that developers cannot perceive the differences between the underlying lists when using the lists, so that they can flexibly switch the list type to meet the long-term iteration of the business demand.
  • the data source information corresponding to the list instance can be loaded by calling the data source loading interface of the list instance, so that the data can be injected at once through the interface, so that the list data maintains consistency before and after.
  • each cell description file stores metadata corresponding to at least one cell type
  • the metadata includes sub-view hierarchical structure information and attributes Set the information.
  • the cell description file loader Loader may be used to load and parse at least one pre-generated cell description file in a structured language.
  • the cell description file loader Loader can be used to load and parse the cell description file and maintain the metadata corresponding to the cell type.
  • a cell instance can be created by the cell generator Generator according to the metadata of the cell type corresponding to the cell to be displayed.
  • the cell generator Generator can serve the list factory, used to generate the cell instances needed by the list factory and recycle and cache the generated cell instances.
  • the list instance before obtaining the data to be displayed and the cell type corresponding to the cell to be displayed of the list instance, the list instance can be created according to the input creation parameters, and the list can be run after the list instance is created, There is no need to repeatedly implement the data source agent and event callback agent of the list, thereby improving the development efficiency. And by using the data source loading interface to load the data source information of the list instance, the consistency of the list data can be ensured.
  • FIG. 3 shows a flowchart of a method for displaying a list according to an embodiment of the present disclosure.
  • This embodiment provides a preferred example based on various optional solutions in the above embodiments. Explanations of terms that are the same as or corresponding to the foregoing embodiments are not repeated here.
  • the list display method provided in the embodiment of the present disclosure specifically includes the following steps:
  • the List Factory Factory can realize the data source proxy and event callback proxy for the list, so that the developer only needs to create a list instance through the List Factory Factory to use, which further reduces the developer's workload and improves the development efficiency.
  • the cell description file loader Loader may be called, so that the cell description file loader Loader can dynamically load and parse at least one cell description file.
  • Loader after Loader reads the cell description file, it can establish the parent-child relationship between the singleton cell lattice views, form a subview hierarchy tree, and cache the generated subview hierarchy tree so that it can be used directly in the future without repeated generation .
  • S330 Return the unique identifier corresponding to the parsed cell type to the list instance in the list factory Factory, so that the list instance uses the unique identifier corresponding to the cell type to register the cell type.
  • the Loader parses the cell description file, it returns the unique identifiers corresponding to all the parsed cell types to the list instance in the list factory Factory, so that the list instance can register these unique identifiers to the underlying system In the list, so that the underlying list can get all the cell types provided by the developer.
  • the data source information can be loaded by calling the data source loading interface of the list instance.
  • the List Factory Factory can shield the differences between the underlying lists of the iOS system and provide developers with a consistent and unified interface, thereby allowing developers to flexibly switch the types of underlying lists.
  • step S340 may be executed after step S330 or may be executed before step S320.
  • step S360 Using the unique identifier of the cell type corresponding to the cell to be displayed as an input parameter, call the cell generator Generator to detect whether there is a cell instance corresponding to the cell type in the cache, and if so, proceed to step S370; if not , Then go to step S380.
  • the corresponding cell instance is immediately returned to the list instance, thereby shortening the creation time of the cell instance and improving the sliding performance of the list.
  • the metadata corresponding to the unique identifier corresponding to the cell type is extracted from the Loader cache.
  • a corresponding cell instance is created based on the extracted metadata based on the Generator, and the created cell instance is returned to the list instance created in the list factory.
  • the cell instance used by the list instance is released, the cell instance can be recovered and cached by using the generator, so that when the cell of the same type needs to be displayed later, the cached cell instance can be directly read, Improve the sliding performance of the list.
  • the cell type in this embodiment is described using a structured description language rather than a native language definition, so that the creation of cell instances can be automatically completed by the cell generator Generator, thereby reducing the number of developers Repeat the creation of redundant cell instances.
  • the list cell type can be dynamically loaded by calling the list cell description file loader Loader and the list factory Factory, thereby realizing the decoupling of list cell definition and list instance creation, and also supporting New cell types are added dynamically, which improves the flexibility of list configuration and the diversity of list display.
  • the list instance can reuse the cell instance released by the list, thereby avoiding the situation where the list is stuck interactively, which greatly improves the sliding performance of the list.
  • the following is an embodiment of a list display device provided by an embodiment of the present disclosure.
  • the device and the list display method of the above embodiments belong to the same concept.
  • FIG. 4 shows a schematic structural diagram of a list display device according to an embodiment of the present disclosure.
  • the embodiment of the present disclosure can be applied to a case where a list is displayed in an application based on an iOS system.
  • the list display device in the embodiment of the present disclosure specifically includes: a data acquisition module to be displayed 410, a cell description file loading module 420, and a cell instance display module 430.
  • the to-be-displayed data obtaining module 410 is used to obtain the to-be-displayed data and the cell type corresponding to the to-be-displayed cell of the list instance according to the data source information in the to-be-displayed list instance;
  • the cell description file loading module 420 is used to To load and parse at least one pre-generated cell description file in structured language, where each cell description file stores metadata corresponding to at least one cell type, and the metadata includes sub-view hierarchical structure information and attribute settings Information;
  • the cell instance display module 430 is used to create a cell instance according to the metadata of the cell type corresponding to the cell to be displayed, and render and display the cell instance according to the data to be displayed.
  • the device further includes:
  • the cell instance cache module is used to create a cell instance according to the metadata of the cell type corresponding to the cell to be displayed, and if the cell instance is released, the cell instance is recovered, the cell instance and the cache The cell type corresponding to the cell instance, so that when a cell of the same type needs to be displayed later, the cached cell instance is read and the read and rendered cell instance is rendered and displayed.
  • the cell description file loading module 420 is specifically used for:
  • the layout parameters include the size parameter of the subview and the position parameter of the subview in the cell; render and display the cell instance according to the layout parameters and the data to be displayed, and cache the layout parameters To enable subsequent rendering of the same type of cell instance using cached layout parameters.
  • the device further includes:
  • the touch behavior processing function adding module is used to create a cell instance, and the method further includes: adding a touch behavior processing function to the subview of the cell instance;
  • the device also includes:
  • the event processing object calling module is used to detect the touch operation for the displayed subview through the touch behavior processing function after rendering and displaying the cell instance according to the data to be displayed, and after detecting the touch operation, the The touch operation information is used as an input parameter to call the event processing object set in advance for the list instance to process the touch operation.
  • the device further includes:
  • the list instance creation module is used to create a list instance based on the input creation parameters and create parameters before acquiring the data to be displayed and the cell type corresponding to the cell to be displayed of the list instance according to the data source information in the list instance to be displayed Including: the type of list instance to be created and the event processing object.
  • the event processing object is used to process the touch operation for each control in each cell in the list instance;
  • the data source information loading module is used to call the data source loading interface of the list instance to load the data source information.
  • the list instance creation module is specifically used to create a list instance according to the input creation parameters by calling a list creation function in the list factory Factory.
  • the structured language is JavaScript object markup JASON language or Extensible Markup Language XML.
  • the cell description file loading module 420 is specifically used to load and parse at least one pre-generated cell description file in a structured language through a cell description file loader Loader;
  • the cell instance display module 430 includes a cell instance creation module for creating a cell instance based on the metadata of the cell type corresponding to the cell to be displayed through the cell generator.
  • the list display device provided by the embodiment of the present disclosure can execute the list display method provided by any embodiment of the present disclosure, and has the corresponding function modules and beneficial effects for executing the list display method.
  • FIG. 5 shows a schematic diagram of a hardware structure of a terminal device according to an embodiment of the present disclosure.
  • the terminal devices in the embodiments of the present disclosure may include, but are not limited to, such as mobile phones, notebook computers, digital broadcast receivers, PDAs (personal digital assistants), PADs (tablet computers), PMPs (portable multimedia players), in-vehicle terminals (e.g. Mobile terminals such as car navigation terminals) and fixed terminals such as digital TVs, desktop computers, etc.
  • the terminal device shown in FIG. 5 is only an example, and should not bring any limitation to the functions and use scope of the embodiments of the present disclosure.
  • the terminal device 500 may include a processing device (such as a central processing unit, a graphics processor, etc.) 501, which may be stored in a read-only memory (Read-Only Memory, ROM) 502 program or from a storage device 508 loads the program in random access memory (Random Access Memory, RAM) 503 to perform various appropriate actions and processes.
  • ROM Read-Only Memory
  • RAM Random Access Memory
  • various programs and data necessary for the operation of the terminal device 500 are also stored.
  • the processing device 501, ROM 502, and RAM 503 are connected to each other via a bus 504.
  • An input/output (I/O) interface 505 is also connected to the bus 504.
  • the following devices can be connected to the I/O interface 505: including input devices 506 such as touch screen, touch pad, keyboard, mouse, camera, microphone, accelerometer, gyroscope, etc.; including, for example, liquid crystal display (LCD), speaker, vibration
  • input devices 506 such as touch screen, touch pad, keyboard, mouse, camera, microphone, accelerometer, gyroscope, etc.
  • An output device 507 such as a storage device; a storage device 508 including, for example, a magnetic tape, a hard disk, etc.; and a communication device 509.
  • the communication device 509 may allow the terminal device 500 to perform wireless or wired communication with other devices to exchange data.
  • FIG. 5 shows a terminal device 500 having various devices, it should be understood that it is not required to implement or have all the devices shown. More or fewer devices may be implemented or provided instead.
  • the process described above with reference to the flowchart may be implemented as a computer software program.
  • embodiments of the present disclosure include a computer program product that includes a computer program carried on a computer-readable medium, the computer program containing program code for performing the method shown in the flowchart.
  • the computer program may be downloaded and installed from the network through the communication device 509, or from the storage device 508, or from the ROM 502.
  • the processing device 501 When the computer program is executed by the processing device 501, the above-mentioned functions defined in the method of the embodiments of the present disclosure are executed.
  • the server proposed by the embodiment of the present disclosure and the list display method proposed by the above embodiments belong to the same concept.
  • this embodiment has the same beneficial effects of performing the list display method .
  • An embodiment of the present disclosure provides a computer storage medium on which a computer program is stored, and when the program is executed by a processor, the list display method provided by any of the above embodiments is implemented.
  • the above-mentioned computer storage medium of the present disclosure may be a computer-readable signal medium or a computer-readable storage medium or any combination of the two.
  • the computer-readable storage medium may be, for example, but not limited to, an electrical, magnetic, optical, electromagnetic, infrared, or semiconductor system, device, or device, or any combination of the above.
  • Computer-readable storage media may include, but are not limited to: electrical connections with one or more wires, portable computer disks, hard disks, random access memory (Random Access Memory, RAM), read-only memory (Read-Only Memory, ROM), Erasable Programmable Read-Only Memory (EPROM) or Flash (FLASH), optical fiber, portable compact disk read-only memory (CD-ROM), optical storage devices, magnetic storage devices , Or any suitable combination of the above.
  • the computer-readable storage medium may be any tangible medium containing or storing a program, and the program may be used by or in combination with an instruction execution system, apparatus, or device.
  • the computer-readable signal medium may include a data signal that is propagated in baseband or as part of a carrier wave, in which computer-readable program code is carried.
  • This propagated data signal can take many forms, including but not limited to electromagnetic signals, optical signals, or any suitable combination of the foregoing.
  • the computer-readable signal medium may also be any computer-readable medium other than a computer-readable storage medium, and the computer-readable signal medium may send, propagate, or transmit a program for use by or in combination with an instruction execution system, apparatus, or device .
  • the program code contained on the computer-readable medium may be transmitted using any appropriate medium, including but not limited to: electric wire, optical cable, RF (radio frequency), etc., or any suitable combination of the foregoing.
  • the above-mentioned computer storage may be included in the above-mentioned terminal device; or it may exist alone without being assembled into the terminal device.
  • the above computer stores one or more programs, and when the one or more programs are executed by the terminal device, the terminal device: according to the data source information in the list instance to be displayed, obtain the cell to be displayed in the list instance Corresponding data and cell types to be displayed; load and parse at least one pre-generated cell description file in structured language, where each cell description file stores at least one cell type corresponding metadata, metadata Including sub-view hierarchical structure information and attribute setting information; according to the metadata of the cell type corresponding to the cell to be displayed, create a cell instance, and render and display the cell instance according to the data to be displayed.
  • the computer program code for performing the operations of the present disclosure can be written in one or more programming languages or a combination thereof.
  • the above programming languages include object-oriented programming languages such as Java, Smalltalk, C++, as well as conventional Procedural programming language-such as "C" language or similar programming language.
  • the program code may be executed entirely on the user's computer, partly on the user's computer, as an independent software package, partly on the user's computer and partly on a remote computer, or entirely on the remote computer or server.
  • the remote computer may be connected to the user's computer through any kind of network, including a local area network (LAN) or a wide area network (WAN), or may be connected to an external computer (for example, through an Internet service provider Internet connection).
  • LAN local area network
  • WAN wide area network
  • Internet service provider Internet connection for example, AT&T, MCI, Sprint, EarthLink, MSN, GTE, etc.
  • each block in the flowchart or block diagram may represent a module, program segment, or part of code that contains one or more logic functions Executable instructions.
  • the functions noted in the block may occur out of the order noted in the figures. For example, two blocks represented in succession may actually be executed in parallel, and they may sometimes be executed in reverse order, depending on the functions involved.
  • each block in the block diagrams and/or flowcharts, and combinations of blocks in the block diagrams and/or flowcharts can be implemented with dedicated hardware-based systems that perform specified functions or operations Or, it can be realized by a combination of dedicated hardware and computer instructions.
  • the units described in the embodiments of the present disclosure may be implemented in software or hardware. Among them, the name of the unit does not constitute a limitation on the unit itself under certain circumstances.
  • the first data acquisition module to be displayed can also be described as "According to the data source information in the list instance to be displayed, Modules of data to be displayed and cell types corresponding to the cells to be displayed in the example of the list".

Landscapes

  • Engineering & Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Human Computer Interaction (AREA)
  • Software Systems (AREA)
  • User Interface Of Digital Computer (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

一种列表显示方法、装置、设备及存储介质,该方法包括:根据待显示的列表实例中的数据源信息,获取列表实例的待显示单元格对应的待显示数据和单元格类型(S110);加载并解析预先生成的至少一个采用结构化语言的单元格描述文件,其中各单元格描述文件中存储有至少一种单元格类型对应的元数据,元数据包括子视图层级结构信息和属性设置信息(S120);根据待显示单元格对应的单元格类型的元数据,创建单元格实例(S130)。上述方案可以提高列表配置的灵活性,实现了列表显示的多样性。

Description

一种列表显示方法、装置、设备及存储介质
相关申请的交叉引用
本申请要求2018年12月14日在中国知识产权局提交的中国专利申请No.201811533884.1的优先权,通过引用将该中国专利申请公开的全部内容并入本文。
技术领域
本公开涉及应用程序开发技术领域,尤其涉及一种列表显示方法、装置、设备及存储介质。
背景技术
在开发基于iOS操作系统的移动应用程序时,开发者经常使用列表方式来展示应用内容。iOS系统为开发者提供了三种列表,分别为UITableView、UICollectionView和UIScrollView,其中,前两种列表是基于第三种列表实现的,UITableView是纵向可滑动列表,UICollectionView的滑动方向可在横向和纵向二者间进行选择,而UIScrollView在横向和纵向上均可滑动。在应用程序开发过程中,开发者往往选择UITableView和UICollectView,以使开发更加便捷。UITableView和UICollectView的创建开发阶段基本一致,可以概括如下:
步骤1、使用原生语言定义各种类型的列表单元格(Cell)类型,复杂列表里的单元格(Cell)类型多至20多种;
步骤2、对步骤1中各种单元格(Cell)类型的子视图进行布局;
步骤3、为步骤1中各种单元格(Cell)类型添加数据处理逻辑;
步骤4、为步骤1中各种单元格(Cell)类型添加事件处理逻辑;
步骤5、创建列表实例,设置列表属性,如背景颜色、布局类型、滑动方向等;
步骤6、向列表实例注册步骤1定义的所有单元格(Cell)类型;
步骤7、实现列表实例的数据源代理和事件回调代理;
步骤8、完成列表的创建。
从列表的创建步骤可以看出:列表单元格(Cell)类型的定义须先行于列表的创建,也就是说列表单元格(Cell)类型和列表的创建强相关,在多业务团队协作开发环境下,列表的业务可能由多个业务团队共同完成,团队业务进度的不同将导致团队互相依赖,不利于业务协同推进,同时也不利于动态的插入新的单元格(Cell)样式,从而不能满足需要灵活配置的业务需求;另外,在一个业务稍微复杂些的列表中,往往需要定义多种列表单元格(Cell),并且列表单元格(Cell)的定义过程复杂,类型增多时也会增加重复操作,比如列表单元格(Cell)子视图的创建、子视图布局、数据处理和事件处理等,这大大降低了开发效率。
在创建列表后,客户端按照固化在代码中单元格类型的定义数据生成单元格实例,并进行渲染显示,显示效果单一,缺乏灵活性。
发明内容
有鉴于此,本公开提供了一种列表显示方法、装置、设备及存储介质,以提高列表配置的灵活性,实现列表显示的多样性。
根据本公开的第一方面,提供了一种列表显示方法,包括:
根据待显示的列表实例中的数据源信息,获取所述列表实例的待显示单元格对应的待显示数据和单元格类型;
加载并解析预先生成的至少一个采用结构化语言的单元格描述文件,其中各所述单元格描述文件中存储有至少一种单元格类型对应的元数据,所述元数据包括子视图层级结构信息和属性设置信息;
根据所述待显示单元格对应的单元格类型的元数据,创建单元格实例。根据本公开的实施例,所述待显示数据对所创建的单元格实例进行渲染和显示。
根据本公开的实施例,在根据所述待显示单元格对应的单元格类型的元数据,创建单元格实例之后,所述方法还包括:
若所述单元格实例被释放,则回收该单元格实例,缓存该单元格实例以及该单元格实例对应的单元格类型,以使后续需要对相同类型的单元格进行显示时,读取缓存的单元格实例并对读取的单元格实例进行渲染和显示。
根据本公开的实施例,根据所述待显示数据对所述单元格实例进行渲染和显示,包括:
确定所述单元格实例中各子视图的布局参数,所述布局参数包括子视图的尺寸参数和子视图在单元格中的位置参数;
根据所述布局参数和所述待显示数据对所述单元格实例进行渲染和显示,并缓存所述布局参数,以使后续使用缓存的所述布局参数对相同类型的单元格实例进行渲染。
根据本公开的实施例,在创建单元格实例之后,所述方法还包括:为所述单元格实例的子视图添加触控行为处理函数;
在根据所述待显示数据对所述单元格实例进行渲染和显示之后,所述方法还包括:
通过所述触控行为处理函数检测针对显示的所述子视图的触控操作,并在检测到所述触控操作后,将所述触控操作的信息作为输入参数,调用预先针对所述列表实例设置的事件处理对象,以对所述触控操作进行处理。
根据本公开的实施例,在根据待显示的列表实例中的数据源信息,获取所述列表实例的待显示单元格对应的待显示数据和单元格类型之前,所述方法还包括:
根据输入的创建参数创建列表实例,所述创建参数包括:需创建的列表实例类型和事件处理对象,所述事件处理对象用于对针对所述列表实例中各单元格中各控件的触控操作进行处理;
调用所述列表实例的数据源加载接口加载数据源信息。
根据本公开的实施例,通过调用列表工厂Factory中的列表创建函数,根据输入的创建参数创建列表实例。
根据本公开的实施例,所述结构化语言为JavaScript对象标记JASON语言或可扩展标记语言XML。
根据本公开的实施例,通过单元格描述文件加载器Loader,加载并解析 预先生成的至少一个采用结构化语言的单元格描述文件;
通过单元格生成器Generator,根据所述待显示单元格对应的单元格类型的元数据,创建单元格实例。
根据本公开的第二方面,提供了一种列表显示装置,包括:
待显示数据获取模块,用于根据待显示的列表实例中的数据源信息,获取所述列表实例的待显示单元格对应的待显示数据和单元格类型;
单元格描述文件加载模块,用于加载并解析预先生成的至少一个采用结构化语言的单元格描述文件,其中各所述单元格描述文件中存储有至少一种单元格类型对应的元数据,所述元数据包括子视图层级结构信息和属性设置信息;
单元格实例显示模块,用于根据所述待显示单元格对应的单元格类型的元数据,创建单元格实例,并根据所述待显示数据对所述单元格实例进行渲染和显示。
根据本公开的实施例,该装置还包括:
单元格实例缓存模块,用于在根据所述待显示单元格对应的单元格类型的元数据,创建单元格实例之后,若所述单元格实例被释放,则回收该单元格实例,缓存该单元格实例以及该单元格实例对应的单元格类型,以使后续需要对相同类型的单元格进行显示时,读取缓存的单元格实例并对读取的单元格实例进行渲染和显示。
根据本公开的实施例,单元格描述文件加载模块,具体用于:
确定所述单元格实例中各子视图的布局参数,所述布局参数包括子视图的尺寸参数和子视图在单元格中的位置参数;根据所述布局参数和所述待显示数据对所述单元格实例进行渲染和显示,并缓存所述布局参数,以使后续使用缓存的所述布局参数对相同类型的单元格实例进行渲染。
根据本公开的实施例,该装置还包括:
触控行为处理函数添加模块,用于在创建单元格实例之后,所述方法还包括:为所述单元格实例的子视图添加触控行为处理函数;
相应地,该装置还包括:
事件处理对象调用模块,用于在根据所述待显示数据对所述单元格实例 进行渲染和显示之后,通过所述触控行为处理函数检测针对显示的所述子视图的触控操作,并在检测到所述触控操作后,将所述触控操作的信息作为输入参数,调用预先针对所述列表实例设置的事件处理对象,以对所述触控操作进行处理。
根据本公开的实施例,该装置还包括:
列表实例创建模块,用于在根据待显示的列表实例中的数据源信息,获取所述列表实例的待显示单元格对应的待显示数据和单元格类型之前,根据输入的创建参数创建列表实例,所述创建参数包括:需创建的列表实例类型和事件处理对象,所述事件处理对象用于对针对所述列表实例中各单元格中各控件的触控操作进行处理;
数据源信息加载模块,用于调用所述列表实例的数据源加载接口加载数据源信息。
根据本公开的实施例,列表实例创建模块,具体用于:通过调用列表工厂Factory中的列表创建函数,根据输入的创建参数创建列表实例。
根据本公开的实施例,所述结构化语言为JavaScript对象标记JASON语言或可扩展标记语言XML。
根据本公开的实施例,单元格描述文件加载模块,具体用于通过单元格描述文件加载器Loader,加载并解析预先生成的至少一个采用结构化语言的单元格描述文件;
单元格实例显示模块包括单元格实例创建模块,用于通过单元格生成器Generator,根据所述待显示单元格对应的单元格类型的元数据,创建单元格实例。
根据本公开的第三方面,提供了一种终端设备,所述终端包括:
一个或多个处理器;
存储器,用于存储一个或多个程序;
当所述一个或多个程序被所述一个或多个处理器执行,使得所述一个或多个处理器实现如本公开任意实施例所提供的列表显示方法。
第四方面,本公开实施例还提供了一种计算机存储介质,其上存储有计算机程序,该程序被处理器执行时实现如本公开任意实施例所提供的列表显 示方法。
本公开实施例通过预先采用结构化语言定义单元格类型,形成单元格描述文件,而非使用原生语言,使得单元格类型可以滞后加载和注册,从而在运行过程中,当获取列表实例中的待显示单元对应的待显示数据后,可以通过加载并解析单元格描述文件的方式,获得待显示单元对应的单元格类型的元数据,并且可以通过在单元格描述文件中添加新的单元格类型的方式,对列表进行动态灵活地配置,从而可以根据业务需求进行显示,提高了列表配置的灵活性,以及实现了列表显示的多样性。
附图说明
为了更清楚地说明本公开的技术方案,下面将对实施例描述中所需要使用的附图做一简单地介绍,显而易见地,下面描述中的附图是本公开的一些实施例,对于本领域普通技术人员来讲,在不付出创造性劳动的前提下,还可以根据这些附图获得其他的附图。
图1示出了根据本公开实施例的一种列表显示方法的流程图;
图2示出了根据本公开另一实施例的一种列表显示方法的流程图;
图3示出了根据本公开又一实施例的一种列表显示方法的流程图;
图4示出了根据本公开实施例的一种列表显示装置结构示意图;
图5示出了根据本公开实施例的一种终端设备的硬件结构示意图。
具体实施方式
为使本公开的目的、技术方案和优点更加清楚,以下将参照本公开实施例中的附图,通过实施方式清楚、完整地描述本公开的技术方案,显然,所描述的实施例是本公开一部分实施例,而不是全部的实施例。基于本公开中的实施例,本领域普通技术人员在没有做出创造性劳动前提下所获得的所有其他实施例,都属于本公开保护的范围。
下述各实施例中,每个实施例中同时提供了可选特征和示例,实施例中记载的各个特征可进行组合,形成多个可选方案,不应将每个编号的实施例仅视为一个技术方案。
实施例一
图1示出了根据本公开实施例的一种列表显示方法的流程图,本公开实施例可适用于在基于iOS系统的应用程序中显示列表的情况,该方法可以由列表显示装置来执行,该装置可以由软件和/或硬件的方式来实现,集成于具有显示功能的终端中,如智能手机、平板电脑等。
如图1所示,本公开实施例中提供的列表显示方法具体包括以下步骤:
S110、根据待显示的列表实例中的数据源信息,获取列表实例的待显示单元格对应的待显示数据和单元格类型。
其中,列表实例可以是指预先创建开发的一个列表。列表实例中的数据源信息可以是指列表实例所使用的数据库或数据库服务器的信息,可以包括但不限于数据源名称。列表实例中可以包括一个或多个待显示单元格,待显示单元格的数量可以根据业务需求预先确定。本实施例可以为每个单元格类型设置一个标识符进行唯一标识,以便于区分不同的单元格类型。
具体地,本实施例可以根据列表实例中的数据源信息,与列表实例对应的列表数据库进行连接,从而可以从列表数据库中获得待显示的列表实例中每个待显示单元格对应的待显示数据以及对应的单元格类型。
S120、加载并解析预先生成的至少一个采用结构化语言的单元格描述文件,其中各单元格描述文件中存储有至少一种单元格类型对应的元数据,元数据包括子视图层级结构信息和属性设置信息。
其中,结构化语言可以为但不限于JavaScript对象标记JSON(JavaScript Object Notation)语言或可扩展标记语言XML(Extensible Markup Language)。列表对应的所有单元格类型的元数据可以只存储到一个单元格描述文件中,也可以分散存储到多个单元格描述文件中,以便在多业务团队协作情况下,不同业务团队可以提供自己的单元格描述文件,使得不同业务可以并行推进。每个单元格描述文件可以存储一种或多种单元格类型对应的元数据。子视图层级结构信息可以是指单元格包含的多个子视图之间的层级关系信息。属性设置信息可以包括但不限于颜色、字体、字号和字形。
具体地,本实施例可以预先采用结构化语言描述每种单元格类型对应的 元数据,并将描述的所有单元格类型对应的元数据存储到一个或多个单元格描述文件中,从而可以对单元格类型定义和列表创建进行解耦,以使单元格类型可以滞后加载和注册。本实施例可以在获取列表实例的待显示单元格对应的待显示数据和单元格类型之后,通过列表实例加载并解析至少一个单元格描述文件,从而可以动态获得每个单元格类型对应的元数据。示例性地,本实施例在采用结构化语言定义单元格类型时,可以为每个单元格类型分配一个全局的唯一标识符,以便于从单元格描述文件中查询单元格类型对应的元数据。
需要注意的是,当根据业务需求需要修改列表显示效果时,可以采用结构化语言描述新的单元格类型对应的元数据,并将描述后的元数据添加至单元格描述文件中,以更新单元格描述文件,从而在对列表进行显示时,可以通过加载并解析更新后的单元格描述文件,获得新的单元格类型对应的元数据,以使在列表的运行阶段,可以对列表进行动态灵活地配置,提高了列表配置的灵活性。
S130、根据待显示单元格对应的单元格类型的元数据,创建单元格实例。
可选地,根据待显示数据对单元格实例进行渲染和显示。
具体地,可以通过待显示单元对应的单元格类型的唯一标识符,从解析后的单元格描述文件中获得待显示单元格对应的单元格类型的元数据。根据元数据中的子视图层级结构信息可以建立待显示单元格子视图间的父子关系,从而形成待显示单元格的子视图层级树,并根据解析后的属性设置信息和子视图层级树可以创建单元格实例。在待显示单元格对应的单元格实例创建后,可以根据待显示单元格对应的待显示数据对单元格实例进行渲染,以便在显示界面中可以展示渲染后的单元格。同理,对于列表实例中的每个待显示单元格而言,均可以通过执行步骤S130的操作,渲染和显示列表实例中的每个待显示单元格,从而实现了列表的显示。
本公开实施例的技术方案,通过预先采用结构化语言定义单元格类型,形成单元格描述文件,而非使用原生语言,使得单元格类型可以滞后加载和注册,从而在运行过程中,当获取列表实例中的待显示单元对应的待显示数据后,可以通过加载并解析单元格描述文件的方式,获得待显示单元对应的 单元格类型的元数据,并且可以通过在单元格描述文件中添加新的单元格类型的方式,对列表进行动态灵活地配置,从而可以根据业务需求进行显示,提高了列表配置的灵活性,以及实现了列表显示的多样性。
在上述技术方案的基础上,在S130中根据待显示单元格对应的单元格类型的元数据,创建单元格实例之后,还可以包括:
若单元格实例被释放,则回收该单元格实例,缓存该单元格实例以及该单元格实例对应的单元格类型,以使后续需要对相同类型的单元格进行显示时,读取缓存的单元格实例并对读取的单元格实例进行渲染和显示。
具体地,当单元格实例使用完后被列表释放时,可以回收单元格实例,并将单元格实例以及单元格实例对应的单元格类型进行缓存,以便后续在需要显示相同类型的单元格时,可以直接读取缓存的单元格实例,无需重新创建该单元格类型的单元格实例,从而可以减少单元格的创建时间,提高列表的滑动性能。
示例性地,在根据待显示单元格对应的单元格类型的元数据,创建单元格实例之前,可以检测缓存中是否存在待显示单元格的单元格类型对应的闲置的单元格实例,若存在,则直接读取该单元格实例;若不存在,则从解析后的单元格描述文件中获取待显示单元格对应的单元格类型的元数据,根据获得的元数据创建单元格实例,并将创建的单元格实例和对应的单元格类型进行缓存,以避免后续重复创建该单元格实例。本实施例通过设置单元格实例的缓存机制,可以提高单元格实例的复用度以及创建速度,从而提高了列表的滑动性能。
在上述技术方案的基础上,S130中根据待显示数据对单元格实例进行渲染和显示,可以包括:确定单元格实例中各子视图的布局参数,其中布局参数包括子视图的尺寸参数和子视图在单元格中的位置参数;根据布局参数和待显示数据对单元格实例进行渲染和显示,并缓存布局参数,以使后续使用缓存的布局参数对相同类型的单元格实例进行渲染。
其中,子视图的尺寸参数可以包括但不限于子视图的高度和宽度。子视图在单元格中的位置参数可以是指子视图在显示界面上的显示位置信息。具体地,本实施例可以根据列表实例中的数据源信息,在与列表实例对应的列 表数据库中,获取预先设置的每个子视图的视图尺寸以及子视图与父视图的相对位置关系,从而可以根据子视图的视图尺寸和显示界面的界面尺寸,计算得到每个子视图在显示界面中显示的尺寸参数,以及根据子视图和父视图的相对位置关系计算得到每个子视图在单元格中的位置参数。本实施例可以缓存待显示单元格对应的单元格实例中的每个子视图的布局参数,以便后续在需要显渲染相同单元格类型对应的单元格实例时,可以直接使用缓存的单元格实例对应的布局参数,无需重复确定该单元格实例对应的布局参数,从而通过缓存单元格实例对应的布局参数可以进一步提高列表的滑动性能。
在上述技术方案的基础上,在S130中创建单元格实例之后,方法还包括:为单元格实例的子视图添加触控行为处理函数;相应地,在S130之后还可以包括:通过触控行为处理函数检测针对显示的子视图的触控操作,并在检测到触控操作后,将触控操作的信息作为输入参数,调用预先针对列表实例设置的事件处理对象,以对触控操作进行处理。
其中,触控行为处理函数可以是预先定义的,用于检测是否存在触控操作的函数。触控操作可以是但不限于触摸行为或者点击行为。事件处理对象可以是预先设置的,用于对列表实例中子视图中控件的触控操作进行逻辑处理。
具体地,开发者可以根据业务需求预先设置单元格实例中的子视图是否接受用户的触控操作,并将指定的需要接收用户触控操作的子视图信息存储至单元格描述文件中。在创建单元格实例后,可以根据单元格描述文件中需要接受用户触控操作的指定子视图信息,为单元格实例中每个指定子视图添加一个触控行为处理函数,从而可以自动开启单元格实例中指定子视图的触控操作,使得操作更加便捷。
在列表显示后,可以通过触控行为处理函数检测是否对指定的子视图进行触控操作,若检测到触控操作时,可以通过调用事件处理对象,将检测到的触控操作通过唯一的事件出口传递至业务方,由业务方对相应事件进行分发处理,从而可以将触控操作统一通过事件处理对象传递至业务方。相比于iOS系统常规列表中单元格的事件均需要开发者在单元格类型定义时进行分发处理,分别将这些单元格事件通过代理方式传递给业务方而言,本实施例 的处理方式无需在不同业务使用列表中重复实现事件回调代理,从而使得操作更加便捷快速,并且有利于提高开发效率。
实施例二
图2示出了根据本公开实施例的一种列表显示方法的流程图,本实施例以上述实施例中各个可选方案为基础进行优化:在获取列表实例的待显示单元格对应的待显示数据和单元格类型之前,增加了“根据输入的创建参数创建列表实例,并调用列表实例的数据源加载接口加载数据源信息”。其中与上述实施例相同或相应的术语的解释在此不再赘述。
如图2所示,本公开实施例中提供的列表显示方法具体包括以下步骤:
S210、根据输入的创建参数创建列表实例,其中创建参数包括:需创建的列表实例类型和事件处理对象,事件处理对象用于对针对列表实例中各单元格中各控件的触控操作进行处理。
其中,列表实例类型可以是根据业务需求预先指定的底层列表类型。事件处理对象也可以是根据业务需求预先指定的,用于处理列表实例中每个单元格中每个控件的触控操作。单元格中的控件是指可以进行触控的部件,比如点赞按钮等。
示例性地,通过调用列表工厂Factory中的列表创建函数,根据输入的创建参数创建列表实例。
其中,列表创建函数可以是列表工厂Factory中预先定义的,用于根据输入的创建参数创建列表实例。列表工厂Factory是基于iOS系统内置的列表实现的,底层列表支持iOS系统的UITableView、UICollectionView或者UIScrollView列表,开发者可以通过列表工厂Factory中的列表创建函数创建列表实例。具体地,可以以输入的创建参数作为函数输入参数,调用列表工厂Factory中的列表创建函数,从而可以更加便捷地创建相应的列表实例。
需要注意的是,本实施例中的列表工厂Factory可以统一实现列表的数据源代理和事件回调代理,从而只需利用列表工厂Factory中的列表创建函数创建一个列表实例即可运行列表,从而可以进一步降低开发者的工作量,进一步提高了开发效率。本实施例中的列表工厂Factory可以屏蔽基于iOS系统的 常规列表之间的差异,以使开发者在使用列表时无法感知底层列表间的差异,从而可以灵活地切换列表类型,满足业务的长期迭代需求。
S220、调用列表实例的数据源加载接口加载数据源信息。
具体地,本实施例可以通过调用列表实例的数据源加载接口加载列表实例对应的数据源信息,从而可以通过接口的方式一次性注入数据,使得列表数据前后保持一致性。
S230、根据待显示的列表实例中的数据源信息,获取列表实例的待显示单元格对应的待显示数据和单元格类型。
S240、加载并解析预先生成的至少一个采用结构化语言的单元格描述文件,其中各单元格描述文件中存储有至少一种单元格类型对应的元数据,元数据包括子视图层级结构信息和属性设置信息。
示例性地,可以通过单元格描述文件加载器Loader,加载并解析预先生成的至少一个采用结构化语言的单元格描述文件。其中,单元格描述文件加载器Loader可以用于负责单元格描述文件的加载、解析以及单元格类型对应的元数据的维护。
S250、根据待显示单元格对应的单元格类型的元数据,创建单元格实例,并根据待显示数据对单元格实例进行渲染和显示。
示例性地,可以通过单元格生成器Generator,根据待显示单元格对应的单元格类型的元数据,创建单元格实例。其中,单元格生成器Generator可以服务于列表工厂,用于生成列表工厂所需要的单元格实例以及回收并缓存生成的单元格实例。
本公开实施例的技术方案,通过在获取列表实例的待显示单元格对应的待显示数据和单元格类型之前,可以根据输入的创建参数创建列表实例,并在创建列表实例后即可运行列表,无需重复实现列表的数据源代理和事件回调代理,从而提高了开发效率。并且通过利用数据源加载接口加载列表实例的数据源信息,从而可以保证列表数据的一致性。
实施例三
图3示出了根据本公开实施例的一种列表显示方法的流程图,本实施例 以上述实施例中的各个可选方案为基础,提供了一种优选实例。其中与上述各实施例相同或相应的术语的解释在此不再赘述。
如图3所示,本公开实施例中提供的列表显示方法具体包括以下步骤:
S310、调用列表工厂Factory中的列表创建函数,根据输入的创建参数创建列表实例。
其中,列表工厂Factory可以统一为列表实现数据源代理和事件回调代理,从而开发者只需要通过列表工厂Factory创建一个列表实例即可使用,进一步减少了开发者的工作量,提高了开发效率。
S320、调用单元格描述文件加载器Loader,动态加载并解析预先生成的至少一个采用结构化语言的单元格描述文件。
具体地,在运行阶段时,可以调用单元格描述文件加载器Loader,使得单元格描述文件加载器Loader可以动态加载并解析至少一个单元格描述文件。在采用结构化语言定义单元格类型时,可以为每个单元格类型预先指定了一个全局的唯一标识符,以便方便查询。
示例性地,Loader读取单元格描述文件后可以建立单例单元格子视图间的父子关系,形成子视图层级树,并将生成的子视图层级树进行缓存,以便后续可以直接使用,无需重复生成。
S330、将解析后的单元格类型对应的唯一标识符返回至列表工厂Factory中的列表实例,以使列表实例使用单元格类型对应的唯一标识符注册单元格类型。
具体地,当Loader解析完单元格描述文件后,将解析的所有单元格类型对应的唯一标识符返回至列表工厂Factory中的列表实例,从而列表实例可以将这些唯一标识符注册到底层使用的系统列表中,以使底层列表可以获得开发者提供的所有单元格类型。
S340、调用列表工厂Factory中列表实例的数据源加载接口加载数据源信息。
具体地,在开发者准备好列表的数据源时,可以通过调用列表实例的数据源加载接口来加载数据源信息。需要注意的是,列表工厂Factory可以屏蔽iOS系统底层列表间的差异,并通过对为开发者提供一致统一的接口,从而可 以允许开发者灵活地切换底层列表类型。
需要说明的是,本实施例不限定步骤S340执行时的执行顺序,比如步骤S340可以在步骤S330之后执行,也可以在步骤S320之前执行。
S350、调用列表工厂Factory中的数据获取函数,根据数据源信息,获取列表实例的待显示单元格对应的待显示数据以及对应的单元格类型的唯一标识符。
S360、将待显示单元对应的单元格类型的唯一标识符作为输入参数,调用单元格生成器Generator,检测缓存中是否存在该单元格类型对应的单元格实例,若是,则进入步骤S370;若否,则进入步骤S380。
S370、将缓存中的单元格类型对应的单元格实例返回至列表实例,并进入步骤S391。
具体地,在Generator缓存中存在对应的单元格实例时,将对应的单元格实例立即返回至列表实例中,从而缩短单元格实例的创建时间,提高列表的滑动性能。
S380、根据单元格类型对应的唯一标识符从单元格描述文件加载器Loader的缓存中提取对应的元数据。
具体地,在Generator缓存中不存在对应的单元格实例时,从Loader的缓存中提取单元格类型对应的唯一标识符对应的元数据。
S390、调用单元格生成器Generator中的单元格创建函数,根据提取的元数据创建单元格实例,并将创建的单元格实例返回至列表实例。
具体地,通过基于Generator根据提取的元数据创建对应的单元格实例,并将创建的单元格实例返回至列表工厂Factory中创建的列表实例。本实施例在列表实例使用的单元格实例被释放时,可以通过利用Generator回收并缓存该单元格实例,以便后续需要对相同类型的单元格进行显示时,可以直接读取缓存的单元格实例,提高列表的滑动性能。
需要注意的是,本实施例中的单元格类型使用结构化的描述语言进行描述,而不是原生语言进行定义,从而单元格实例的创建可以通过单元格生成器Generator自动完成,从而减少了开发者重复冗余的单元格实例的创建操作。
S391、调用列表工厂Factory中的渲染函数,根据待显示数据对单元格实 例进行渲染和显示。
本公开实施例的技术方案,通过调用列表单元格描述文件加载器Loader和列表工厂Factory可以动态加载列表单元格类型,从而实现了列表单元格定义和列表实例创建的解耦,并且也支持向列表动态的添加新的单元格类型,提高了列表配置的灵活性,以及列表显示的多样性。并且列表实例可以重复利用被列表释放的单元格实例,从而可以避免列表互动卡顿的情况,大大提高了列表的滑动性能。
以下是本公开实施例提供的列表显示装置的实施例,该装置与上述各实施例的列表显示方法属于同一个构思,在列表显示装置的实施例中未详尽描述的细节内容,可以参考上述列表显示方法的实施例。
实施例四
图4示出了根据本公开实施例的一种列表显示装置结构示意图,本公开实施例可适用于在基于iOS系统的应用程序中显示列表的情况。如图4所示,本公开实施例中列表显示装置具体包括:待显示数据获取模块410、单元格描述文件加载模块420和单元格实例显示模块430。
其中,待显示数据获取模块410,用于根据待显示的列表实例中的数据源信息,获取列表实例的待显示单元格对应的待显示数据和单元格类型;单元格描述文件加载模块420,用于加载并解析预先生成的至少一个采用结构化语言的单元格描述文件,其中各单元格描述文件中存储有至少一种单元格类型对应的元数据,元数据包括子视图层级结构信息和属性设置信息;单元格实例显示模块430,用于根据待显示单元格对应的单元格类型的元数据,创建单元格实例,并根据待显示数据对单元格实例进行渲染和显示。
根据本公开的实施例,该装置还包括:
单元格实例缓存模块,用于在根据待显示单元格对应的单元格类型的元数据,创建单元格实例之后,若单元格实例被释放,则回收该单元格实例,缓存该单元格实例以及该单元格实例对应的单元格类型,以使后续需要对相同类型的单元格进行显示时,读取缓存的单元格实例并对读取的单元格实例进行渲染和显示。
根据本公开的实施例,单元格描述文件加载模块420,具体用于:
确定单元格实例中各子视图的布局参数,布局参数包括子视图的尺寸参数和子视图在单元格中的位置参数;根据布局参数和待显示数据对单元格实例进行渲染和显示,并缓存布局参数,以使后续使用缓存的布局参数对相同类型的单元格实例进行渲染。
根据本公开的实施例,该装置还包括:
触控行为处理函数添加模块,用于在创建单元格实例之后,方法还包括:为单元格实例的子视图添加触控行为处理函数;
相应地,该装置还包括:
事件处理对象调用模块,用于在根据待显示数据对单元格实例进行渲染和显示之后,通过触控行为处理函数检测针对显示的子视图的触控操作,并在检测到触控操作后,将触控操作的信息作为输入参数,调用预先针对列表实例设置的事件处理对象,以对触控操作进行处理。
根据本公开的实施例,该装置还包括:
列表实例创建模块,用于在根据待显示的列表实例中的数据源信息,获取列表实例的待显示单元格对应的待显示数据和单元格类型之前,根据输入的创建参数创建列表实例,创建参数包括:需创建的列表实例类型和事件处理对象,事件处理对象用于对针对列表实例中各单元格中各控件的触控操作进行处理;
数据源信息加载模块,用于调用列表实例的数据源加载接口加载数据源信息。
根据本公开的实施例,列表实例创建模块,具体用于:通过调用列表工厂Factory中的列表创建函数,根据输入的创建参数创建列表实例。
根据本公开的实施例,结构化语言为JavaScript对象标记JASON语言或可扩展标记语言XML。
根据本公开的实施例,单元格描述文件加载模块420,具体用于通过单元格描述文件加载器Loader,加载并解析预先生成的至少一个采用结构化语言的单元格描述文件;
单元格实例显示模块430包括单元格实例创建模块,用于通过单元格生 成器Generator,根据待显示单元格对应的单元格类型的元数据,创建单元格实例。
本公开实施例所提供的列表显示装置可执行本公开任意实施例所提供的列表显示方法,具备执行列表显示方法相应的功能模块和有益效果。
实施例五
图5示出了根据本公开实施例的一种终端设备的硬件结构示意图。本公开实施例中的终端设备可以包括但不限于诸如移动电话、笔记本电脑、数字广播接收器、PDA(个人数字助理)、PAD(平板电脑)、PMP(便携式多媒体播放器)、车载终端(例如车载导航终端)等等的移动终端以及诸如数字TV、台式计算机等等的固定终端。图5示出的终端设备仅仅是一个示例,不应对本公开实施例的功能和使用范围带来任何限制。
如图5所示,终端设备500可以包括处理装置(例如中央处理器、图形处理器等)501,其可以根据存储在只读存储器(Read-Only Memory,ROM)502中的程序或者从存储装置508加载到随机访问存储器(Random Access Memory,RAM)503中的程序而执行各种适当的动作和处理。在RAM 503中,还存储有终端设备500操作所需的各种程序和数据。处理装置501、ROM 502以及RAM 503通过总线504彼此相连。输入/输出(I/O)接口505也连接至总线504。
通常,以下装置可以连接至I/O接口505:包括例如触摸屏、触摸板、键盘、鼠标、摄像头、麦克风、加速度计、陀螺仪等的输入装置506;包括例如液晶显示器(LCD)、扬声器、振动器等的输出装置507;包括例如磁带、硬盘等的存储装置508;以及通信装置509。通信装置509可以允许终端设备500与其他设备进行无线或有线通信以交换数据。虽然图5示出了具有各种装置的终端设备500,但是应理解的是,并不要求实施或具备所有示出的装置。可以替代地实施或具备更多或更少的装置。
特别地,根据本公开的实施例,上文参考流程图描述的过程可以被实现为计算机软件程序。例如,本公开的实施例包括一种计算机程序产品,其包括承载在计算机可读介质上的计算机程序,该计算机程序包含用于执行流程 图所示的方法的程序代码。在这样的实施例中,该计算机程序可以通过通信装置509从网络上被下载和安装,或者从存储装置508被安装,或者从ROM 502被安装。在该计算机程序被处理装置501执行时,执行本公开实施例的方法中限定的上述功能。
本公开实施例提出的服务器与上述实施例提出的列表显示方法属于同一构思,未在本实施例中详尽描述的技术细节可参见上述实施例,并且本实施例具备执行列表显示方法相同的有益效果。
实施例六
本公开实施例提供了一种计算机存储介质,其上存储有计算机程序,该程序被处理器执行时实现上述任意实施例所提供的列表显示方法。
需要说明的是,本公开上述的计算机存储介质可以是计算机可读信号介质或者计算机可读存储介质或者是上述两者的任意组合。计算机可读存储介质例如可以是——但不限于——电、磁、光、电磁、红外线、或半导体的系统、装置或器件,或者任意以上的组合。计算机可读存储介质的更具体的例子可以包括但不限于:具有一个或多个导线的电连接、便携式计算机磁盘、硬盘、随机访问存储器(Random Access Memory,RAM)、只读存储器(Read-Only Memory,ROM)、可擦式可编程只读存储器(Erasable Programmable Read-Only Memory,EPROM)或闪存(FLASH)、光纤、便携式紧凑磁盘只读存储器(CD-ROM)、光存储器件、磁存储器件、或者上述的任意合适的组合。在本公开中,计算机可读存储介质可以是任何包含或存储程序的有形介质,该程序可以被指令执行系统、装置或者器件使用或者与其结合使用。而在本公开中,计算机可读信号介质可以包括在基带中或者作为载波一部分传播的数据信号,其中承载了计算机可读的程序代码。这种传播的数据信号可以采用多种形式,包括但不限于电磁信号、光信号或上述的任意合适的组合。计算机可读信号介质还可以是计算机可读存储介质以外的任何计算机可读介质,该计算机可读信号介质可以发送、传播或者传输用于由指令执行系统、装置或者器件使用或者与其结合使用的程序。计算机可读介质上包含的程序代码可以用任何适当的介质传输,包括但不限于:电线、光 缆、RF(射频)等等,或者上述的任意合适的组合。
上述计算机存储可以是上述终端设备中所包含的;也可以是单独存在,而未装配入该终端设备中。
上述计算机存储承载有一个或者多个程序,当上述一个或者多个程序被该终端设备执行时,使得该终端设备:根据待显示的列表实例中的数据源信息,获取列表实例的待显示单元格对应的待显示数据和单元格类型;加载并解析预先生成的至少一个采用结构化语言的单元格描述文件,其中各单元格描述文件中存储有至少一种单元格类型对应的元数据,元数据包括子视图层级结构信息和属性设置信息;根据待显示单元格对应的单元格类型的元数据,创建单元格实例,并根据待显示数据对单元格实例进行渲染和显示。
可以以一种或多种程序设计语言或其组合来编写用于执行本公开的操作的计算机程序代码,上述程序设计语言包括面向对象的程序设计语言—诸如Java、Smalltalk、C++,还包括常规的过程式程序设计语言—诸如“C”语言或类似的程序设计语言。程序代码可以完全地在用户计算机上执行、部分地在用户计算机上执行、作为一个独立的软件包执行、部分在用户计算机上部分在远程计算机上执行、或者完全在远程计算机或服务器上执行。在涉及远程计算机的情形中,远程计算机可以通过任意种类的网络——包括局域网(LAN)或广域网(WAN)—连接到用户计算机,或者,可以连接到外部计算机(例如利用因特网服务提供商来通过因特网连接)。
附图中的流程图和框图,图示了按照本公开各种实施例的系统、方法和计算机程序产品的可能实现的体系架构、功能和操作。在这点上,流程图或框图中的每个方框可以代表一个模块、程序段、或代码的一部分,该模块、程序段、或代码的一部分包含一个或多个用于实现规定的逻辑功能的可执行指令。也应当注意,在有些作为替换的实现中,方框中所标注的功能也可以以不同于附图中所标注的顺序发生。例如,两个接连地表示的方框实际上可以基本并行地执行,它们有时也可以按相反的顺序执行,这依所涉及的功能而定。也要注意的是,框图和/或流程图中的每个方框、以及框图和/或流程图中的方框的组合,可以用执行规定的功能或操作的专用的基于硬件的系统来实现,或者可以用专用硬件与计算机指令的组合来实现。
描述于本公开实施例中所涉及到的单元可以通过软件的方式实现,也可以通过硬件的方式来实现。其中,单元的名称在某种情况下并不构成对该单元本身的限定,例如,第一待显示数据获取模块,还可以被描述为“根据待显示的列表实例中的数据源信息,获取所述列表实例的待显示单元格对应的待显示数据和单元格类型的模块”。
以上描述仅为本公开的较佳实施例以及对所运用技术原理的说明。本领域技术人员应当理解,本公开中所涉及的公开范围,并不限于上述技术特征的特定组合而成的技术方案,同时也应涵盖在不脱离上述公开构思的情况下,由上述技术特征或其等同特征进行任意组合而形成的其它技术方案。例如上述特征与本公开中公开的(但不限于)具有类似功能的技术特征进行互相替换而形成的技术方案。

Claims (12)

  1. 一种列表显示方法,包括:
    根据待显示的列表实例中的数据源信息,获取所述列表实例的待显示单元格对应的待显示数据和单元格类型;
    加载并解析预先生成的至少一个采用结构化语言的单元格描述文件,其中各所述单元格描述文件中存储有至少一种单元格类型对应的元数据,所述元数据包括子视图层级结构信息和属性设置信息;以及
    根据所述待显示单元格对应的单元格类型的元数据,创建单元格实例。
  2. 根据权利要求1所述的方法,还包括根据所述待显示数据对所创建的单元格实例进行渲染和显示。
  3. 根据权利要求1所述的方法,在根据所述待显示单元格对应的单元格类型的元数据,创建单元格实例之后,所述方法还包括:
    若所述单元格实例被释放,则回收该单元格实例,缓存该单元格实例以及该单元格实例对应的单元格类型,以使后续需要对相同类型的单元格进行显示时,读取缓存的单元格实例并对读取的单元格实例进行渲染和显示。
  4. 根据权利要求2所述的方法,其中,根据所述待显示数据对所创建的单元格实例进行渲染和显示,包括:
    确定所述单元格实例中各子视图的布局参数,其中所述布局参数包括子视图的尺寸参数和子视图在单元格中的位置参数;以及
    根据所述布局参数和所述待显示数据对所述单元格实例进行渲染和显示,并缓存所述布局参数,以使后续使用缓存的所述布局参数对相同类型的单元格实例进行渲染。
  5. 根据权利要求1所述的方法,其中,在创建单元格实例之后,所述方法还包括:为所述单元格实例的子视图添加触控行为处理函数,并且
    在根据所述待显示数据对所创建的单元格实例进行渲染和显示之后,所述方法还包括:
    通过所述触控行为处理函数检测针对显示的所述子视图的触控操作,并在检测到所述触控操作后,将所述触控操作的信息作为输入参数,调用预先 针对所述列表实例设置的事件处理对象,以对所述触控操作进行处理。
  6. 根据权利要求1所述的方法,其中,在根据待显示的列表实例中的数据源信息,获取所述列表实例的待显示单元格对应的待显示数据和单元格类型之前,所述方法还包括:
    根据输入的创建参数创建列表实例,其中所述创建参数包括:需创建的列表实例类型和事件处理对象,其中所述事件处理对象用于对针对所述列表实例中各单元格中各控件的触控操作进行处理;以及
    调用所述列表实例的数据源加载接口加载数据源信息。
  7. 根据权利要求6所述的方法,其中,通过调用列表工厂Factory中的列表创建函数,根据输入的创建参数创建列表实例。
  8. 根据权利要求1-7中任一项所述的方法,其中,所述结构化语言为JavaScript对象标记JSON语言或可扩展标记语言XML。
  9. 根据权利要求1-7中任一项所述的方法,其中,通过单元格描述文件加载器Loader,加载并解析预先生成的至少一个采用结构化语言的单元格描述文件,并且
    通过单元格生成器Generator,根据所述待显示单元格对应的单元格类型的元数据,创建单元格实例。
  10. 一种列表显示装置,包括:
    待显示数据获取模块,被配置为根据待显示的列表实例中的数据源信息,获取所述列表实例的待显示单元格对应的待显示数据和单元格类型;
    单元格描述文件加载模块,被配置为加载并解析预先生成的至少一个采用结构化语言的单元格描述文件,其中各所述单元格描述文件中存储有至少一种单元格类型对应的元数据,所述元数据包括子视图层级结构信息和属性设置信息;
    单元格实例显示模块,被配置为根据所述待显示单元格对应的单元格类型的元数据,创建单元格实例,并根据所述待显示数据对所述单元格实例进行渲染和显示。
  11. 一种终端设备,所述终端包括:
    一个或多个处理器;
    存储器,用于存储一个或多个程序;
    当所述一个或多个程序被所述一个或多个处理器执行,使得所述一个或多个处理器实现如权利要求1-9中任一所述的列表显示方法。
  12. 一种计算机存储介质,其上存储有计算机程序,该程序被处理器执行时实现如权利要求1-9中任一所述的列表显示方法。
PCT/CN2019/125316 2018-12-14 2019-12-13 一种列表显示方法、装置、设备及存储介质 WO2020119800A1 (zh)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201811533884.1 2018-12-14
CN201811533884.1A CN109634490B (zh) 2018-12-14 2018-12-14 一种列表显示方法、装置、设备及存储介质

Publications (1)

Publication Number Publication Date
WO2020119800A1 true WO2020119800A1 (zh) 2020-06-18

Family

ID=66074146

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2019/125316 WO2020119800A1 (zh) 2018-12-14 2019-12-13 一种列表显示方法、装置、设备及存储介质

Country Status (2)

Country Link
CN (1) CN109634490B (zh)
WO (1) WO2020119800A1 (zh)

Families Citing this family (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109634490B (zh) * 2018-12-14 2020-05-12 北京字节跳动网络技术有限公司 一种列表显示方法、装置、设备及存储介质
CN110442854B (zh) * 2019-08-13 2023-04-07 北京源清慧虹信息科技有限公司 报表的生成方法、装置、计算机设备和可读存储介质
CN111124394A (zh) * 2019-11-26 2020-05-08 泰康保险集团股份有限公司 基于元数据的表单配置方法及装置、设备和介质
CN111126027A (zh) * 2019-12-25 2020-05-08 北京锐安科技有限公司 一种列表生成方法、装置、设备及介质
CN111290680B (zh) * 2020-01-21 2021-10-22 腾讯科技(深圳)有限公司 列表显示方法、装置、终端及存储介质
CN111339463B (zh) * 2020-02-19 2023-07-04 望海康信(北京)科技股份公司 列表数据的展示方法、装置和电子设备
CN113051012B (zh) * 2021-03-18 2022-12-02 平安普惠企业管理有限公司 基于列表视图的数据加载方法、装置、设备及介质
CN114428656B (zh) * 2021-12-17 2024-03-12 北京达佳互联信息技术有限公司 一种弹窗显示方法及装置
CN115344167A (zh) * 2022-08-24 2022-11-15 北京字跳网络技术有限公司 用于管理视图单元的方法、装置、设备和介质
CN115237413B (zh) * 2022-09-22 2023-02-24 北京达佳互联信息技术有限公司 一种列表处理方法、装置、电子设备及存储介质

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20140188958A1 (en) * 2012-12-31 2014-07-03 Appsense, Limited Data driven hierarchical pages
CN107329795A (zh) * 2017-06-23 2017-11-07 北京酷我科技有限公司 一种TableView优化方法
CN107992458A (zh) * 2016-10-26 2018-05-04 腾讯科技(北京)有限公司 表格规则的生成方法和装置
CN108664296A (zh) * 2017-03-31 2018-10-16 阿里巴巴集团控股有限公司 一种页面渲染方法和装置、一种页面处理方法和装置
CN109634490A (zh) * 2018-12-14 2019-04-16 北京字节跳动网络技术有限公司 一种列表显示方法、装置、设备及存储介质

Family Cites Families (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8381113B2 (en) * 2007-04-06 2013-02-19 Microsoft Corporation Metadata-driven automatic UI code generation
CN102339291B (zh) * 2010-07-23 2014-09-10 阿里巴巴集团控股有限公司 一种列表生成方法及设备
CN102646038B (zh) * 2012-02-28 2015-02-18 广州市动景计算机科技有限公司 控件内容展现方法、控件内容展现装置以及移动终端
CN104933019B (zh) * 2015-06-05 2019-05-10 亚信科技(南京)有限公司 一种列表生成的方法及装置
CN106681698B (zh) * 2015-11-05 2020-05-22 阿里巴巴集团控股有限公司 动态列表的生成方法及装置
CN108563477B (zh) * 2018-03-02 2022-04-26 北京奇艺世纪科技有限公司 一种页面事件响应方法和装置

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20140188958A1 (en) * 2012-12-31 2014-07-03 Appsense, Limited Data driven hierarchical pages
CN107992458A (zh) * 2016-10-26 2018-05-04 腾讯科技(北京)有限公司 表格规则的生成方法和装置
CN108664296A (zh) * 2017-03-31 2018-10-16 阿里巴巴集团控股有限公司 一种页面渲染方法和装置、一种页面处理方法和装置
CN107329795A (zh) * 2017-06-23 2017-11-07 北京酷我科技有限公司 一种TableView优化方法
CN109634490A (zh) * 2018-12-14 2019-04-16 北京字节跳动网络技术有限公司 一种列表显示方法、装置、设备及存储介质

Also Published As

Publication number Publication date
CN109634490A (zh) 2019-04-16
CN109634490B (zh) 2020-05-12

Similar Documents

Publication Publication Date Title
WO2020119800A1 (zh) 一种列表显示方法、装置、设备及存储介质
WO2020119485A1 (zh) 一种页面显示方法、装置、设备及存储介质
US11656859B2 (en) Data model API for live applications in a cloud collaboration platform
US11119812B2 (en) Method and device for processing application program page according to a common interface container
US11853820B2 (en) Cross-process communication method, apparatus, and device
WO2020052337A1 (zh) 信息处理方法、装置、存储介质及电子设备
CN111309216B (zh) 列表页面的显示方法、装置、计算机设备及存储介质
WO2020119804A1 (zh) 页面视图的显示方法、装置、设备及存储介质
CN111581555B (zh) 一种文档加载方法、装置、设备及存储介质
CN110070593B (zh) 图片预览信息的显示方法、装置、设备及介质
CN109445841B (zh) 接口文档管理方法、装置、服务器及存储介质
CN110554874A (zh) 用于复用SaaS平台网页组件的方法和装置
WO2022184077A1 (zh) 文档编辑的方法、装置、终端及非暂时性存储介质
CN111324376B (zh) 功能配置方法、装置、电子设备及计算机可读介质
US11438403B2 (en) Page presentation method and system, computer system, and computer readable medium
CN113448570A (zh) 数据处理方法、装置、电子设备及存储介质
WO2023056841A1 (zh) 一种数据服务方法、装置及相关产品
CN113656041A (zh) 数据处理方法、装置、设备及存储介质
CN113094561A (zh) 网页生成方法、网页生成装置、电子设备以及存储介质
CN113778566A (zh) 原生应用调用方法、装置、电子设备和计算机可读介质
CN113835790A (zh) 基于Android的分页页面显示方法和装置
CN116360710B (zh) 应用于服务器集群的数据存储方法、电子设备和可读介质
CN109933334B (zh) 一种程序执行方法、装置、设备及介质
CN112688863B (zh) 网关数据处理方法、装置及电子设备
CN116204440A (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: 19897378

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 240921)

122 Ep: pct application non-entry in european phase

Ref document number: 19897378

Country of ref document: EP

Kind code of ref document: A1