Here is my XML layout. I am adding more rows to the table dynamically.
<?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:myapp="http://schemas.android.com/apk/res/com.tweets" android:id="@+id/screen" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:background="#FFFFFF"> <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/main" android:background="#FFFFFF"> <TableRow android:id="@+id/TableRow01" android:layout_width="wrap_content" android:layout_height="wrap_content"> <TextView android:id="@+id/TLocView01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="15px" android:textStyle="bold" android:textColor="#000000" android:text="FatWallet Tweets:"> </TextView> </TableRow> </TableLayout> </ScrollView>
I want to implement paging with scrollview. If the user is trying to scroll back or forward, I want to make the previous pages and the next page requests. How to do it? Any hint would be appreciated. Thank you
android paging scrollview
WebThinker Dec 11 '10 at 2:51
source share