Вопрос

For a project I'm trying to implement a bus time table Android Application. I'm fairly new to Android Development and need to store the time tables in efficient way.

Are there any decent ways to implement a table that's clear when viewed in the application, and small enough in memory so that it runs smoothly?

Also, is there a simple way that once the table is created that by touching a button it automatically updates without creating a new activity? Ie your currently viewing a timetable for route 1 and by pressing a button you view route 2 etc.

Это было полезно?

Решение

You should use an Android Content Provider for the time table.

As for your update, you can just make a request to your content provider in onResume().

Другие советы

From http://mobile.tutsplus.com/tutorials/android/android-sdk_table-layout/

You can also programmatically create and configure table layouts in Java. This is done using the TableLayout and TableRow classes (android.widget.TableLayout and android.widget.TableRow).

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top