On Fri, Jan 22, 2016 at 1:42 AM, Matt Fach <matt.f...@gmail.com> wrote:

> I am trying to make embedded list views.  Anyone know of any good
> tutorials around?  I can't find a single youtube video on this or even an
> article written on how to do this.
>

This is likely because what you're trying to do is not possible.


>  I have a very large graph with a bunch of nodes that I wannt turn into a
> navigational interface with listviews.
>

What is "a navigational interface with ListViews"?


>  Attatched is a picture of what I want to turn into an android app.
>

That made my head hurt.


>   The very bottom nodes all the children will all be fragmented activities.
>

What are "fragmented activities"?


>  So I basically want to do this
>
> -ListView
>  --ListView
>     ---ListView
>        ----ListView
>            -----Activity
>            -----Activity
>         ----ListView
>            -----Activity
>            -----Activity
>         ....ect...
>

That's not possible. Activities are top level structure in Android. You
can't have multiple Activites on the screen at once, nor can you contain an
Activity within another structure.


> I was thinking of putting all the data in a JSON file and parsing that
> into listviews?  But then again, I have no idea how to do this.
> Any help would be great.
>

I think what actually want is:

Activity
- Listview
 - Node 1 ->[CLICK] -> Activity
 - Node 2              - ListView
 - ....                 - Node 1
                        - Node 2
                        - ...

Where clicking on each node brings you to a new instance of the Activity
with the selected node's children in the list.

-------------------------------------------------------------------------------------------------
TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CANCScgg0y5bc-9a_VBKGdnj2cb9rn8CQJsQFUzxJKpb1wWHDYg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to