Search Results

Search found 2 results on 1 pages for 'exiang'.

Page 1/1 | 1 

  • how to make a NEWS -Reader app

    - by exiang
    hey, I'm a beginner and I'm trying to make a NEWS reader app. My idea is to make an app just like N.Y Times. The question is : how do I access the news database and display on my native app ? If I make an RSS reader kinda thing, will I be able to display the contents of the news feed on my native app itself ? Please, I'v been reading and trying different tactics but not really getting anywhere close to what I want. A simple tip from you guys could really help me. thx

    Read the article

  • xml schema putting both sequence and all under one complexType node

    - by exiang
    Here is the xml file: <section> <number>1</number> <title>A Title goes here...</title> <code>TheCode</code> <element></element> <element></element> </section> In section node, there are number, title and code node. Their sequence must not be fixed. Then, there are multiple element under section node as well. The idea is to use the following schema: <xs:complexType name="Type-section"> <xs:all> <xs:element name="number" minOccurs="0"></xs:element> <xs:element name="code" minOccurs="1"></xs:element> <xs:element name="title" minOccurs="1"></xs:element> </xs:all> <xs:sequence> <xs:element maxOccurs="unbounded" name="element"></xs:element> </xs:sequence> </xs:complexType> But it is invalid. I just cant put "sequence" and "all" together in the same level. How can i fix it?

    Read the article

1