在Android应用程序中向左滚动视图

时间:2011-04-19 09:28:43

标签: android scrollview right-to-left

在我的应用程序中,我在布局中间放置了一个文本视图,当我向左滚动屏幕时,我想显示谷歌地图。到目前为止,我通过ontouch方法显示谷歌aps。

如何执行此操作......

2 个答案:

答案 0 :(得分:3)

您可以使用名为SwipeView的第三方。

它是HorizontalScrollView类的扩展。

答案 1 :(得分:1)

使用它,它的工作正常,没有延迟

 hor = (HorizontalScrollView) findViewById(R.id.horizontalScrollView1);
    hor.postDelayed(new Runnable() {
        public void run() {
            hor.fullScroll(HorizontalScrollView.FOCUS_RIGHT);
        }
    }, 1L);