Android TableLayout分页示例需要

时间:2012-11-28 06:30:04

标签: android pagination

我想要一个表格分页的工作演示。有人可以给我表格分页的链接。 Android table pagination

我尝试过这个链接,但它没有用。有人可以告诉我如何实现这一目标。我试过了PAGINATION LAYOUT

但这不起作用。如果这个工作可以告诉我提到的程序中的错误。

1 个答案:

答案 0 :(得分:1)

我个人会使用ViewPager或View Flipper进行分页。

此视频显示了如何使用视图鳍状肢。 ViewFlipper Example 只需替换自己的视图,如TableRow。

如果您想使用ViewPager。 Android documentation has sample code。 (编辑:我应该注意viewPager需要支持库This will explain how to install it. Its very easy

编辑: 这是伪xml布局的样子。

<tableLayout>
    <viewFlipper>
       <TableRow>
        <Button>
        </TableRow>

 <TableRow>
        <Button>
        </TableRow>

 <TableRow>
        <Button>
        </TableRow>
 </viewFlipper>
<TableLayout>