android中的ScrollView垂直和水平


151

寻找垂直和水平Scrollview的解决方案真的很累。

我读到框架中没有实现此功能的任何视图/布局,但是我需要这样的东西:

我需要在其他布局中定义一个布局,子布局必须实现垂直/水平滚动才能移动。

最初实现的代码逐像素移动布局,但是我认为这不是正确的方法。我使用ScrollView和Horizo​​ntal ScrollView进行了尝试,但是没有什么能像我想要的那样工作,因为它仅实现垂直或水平滚动。

画布不是我的解决方案,因为我需要在某人的子元素中附加侦听器。

我能做什么?



14
这是非常荒谬的,Android无法立即使用。我们已经使用了六种其他UI技术,并且闻所未闻的没有水平/垂直滚动容器这样的基本功能。
flexicious.com 2014年

好的,最后我们为datagrid编写了自己的文件:androidjetpack.com/Home/AndroidDataGrid。除了水平/垂直滚动外,还可以做更多的事情。但是这个想法基本上是将HScroller包装在Vertical Scroller中。您还必须重写add / remove子方法以将内部滚动条和其他一些恶作剧作为目标,但这是可行的。
flexicious.com 2014年

Answers:


90

混合上面的一些建议,就能得到一个好的解决方案:

自定义ScrollView:

package com.scrollable.view;

import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.widget.ScrollView;

public class VScroll extends ScrollView {

    public VScroll(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public VScroll(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public VScroll(Context context) {
        super(context);
    }

    @Override
    public boolean onTouchEvent(MotionEvent ev) {
        return false;
    }
}

自定义Horizo​​ntalScrollView:

package com.scrollable.view;

import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.widget.HorizontalScrollView;

public class HScroll extends HorizontalScrollView {

    public HScroll(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public HScroll(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public HScroll(Context context) {
        super(context);
    }

    @Override
    public boolean onTouchEvent(MotionEvent ev) {
        return false;
    }
}

ScrollableImageActivity:

package com.scrollable.view;

import android.app.Activity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.widget.HorizontalScrollView;
import android.widget.ScrollView;

public class ScrollableImageActivity extends Activity {

    private float mx, my;
    private float curX, curY;

    private ScrollView vScroll;
    private HorizontalScrollView hScroll;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        vScroll = (ScrollView) findViewById(R.id.vScroll);
        hScroll = (HorizontalScrollView) findViewById(R.id.hScroll);

    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        float curX, curY;

        switch (event.getAction()) {

            case MotionEvent.ACTION_DOWN:
                mx = event.getX();
                my = event.getY();
                break;
            case MotionEvent.ACTION_MOVE:
                curX = event.getX();
                curY = event.getY();
                vScroll.scrollBy((int) (mx - curX), (int) (my - curY));
                hScroll.scrollBy((int) (mx - curX), (int) (my - curY));
                mx = curX;
                my = curY;
                break;
            case MotionEvent.ACTION_UP:
                curX = event.getX();
                curY = event.getY();
                vScroll.scrollBy((int) (mx - curX), (int) (my - curY));
                hScroll.scrollBy((int) (mx - curX), (int) (my - curY));
                break;
        }

        return true;
    }

}

布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <com.scrollable.view.VScroll android:layout_height="fill_parent"
        android:layout_width="fill_parent" android:id="@+id/vScroll">
        <com.scrollable.view.HScroll android:id="@+id/hScroll"
            android:layout_width="fill_parent" android:layout_height="fill_parent">
            <ImageView android:layout_width="fill_parent" android:layout_height="fill_parent" android:src="@drawable/bg"></ImageView>
        </com.scrollable.view.HScroll>
    </com.scrollable.view.VScroll>

</LinearLayout>

这是一个很好的答案,我在视图中还有其他滚动元素也需要更改。我要做的就是与其他人一起触发滚动。
T. Markle

1
大!进行一些调整以考虑到速度,这将是完美的(而且,LinearLayout我猜您不需要初始的)
Romuald Brunet 2012年

嗨,马赫迪(Mahdi),您能告诉我,您在活动课堂上重新注册了哪个控件/部件上的触摸监听器。
Shachillies,2013年

抱歉@DeepakSharma的延迟。我没有在活动中注册任何触摸侦听器,只是重写了活动的onTouchEvent。
Mahdi Hijazi

@MahdiHijazi您能在github.com/MikeOrtiz/TouchImageView中添加水平滚动和垂直滚动的代码吗, 这是单击按钮时成功缩放图像,但滚动图像失败
Erum 2014年

43

由于这似乎是Google中“ Android垂直+水平ScrollView”的第一个搜索结果,因此我认为应该在此处添加此内容。马特·克拉克(Mat Clark)已基于Android源构建了一个自定义视图,它似乎运行得很好:二维ScrollView

请注意,该页面中的类存在一个错误,该错误会计算视图的水平宽度。评论中有Manuel Hilty的修复程序:

解决方案:将第808行的语句替换为以下内容:

final int childWidthMeasureSpec = MeasureSpec.makeMeasureSpec(lp.leftMargin + lp.rightMargin, MeasureSpec.UNSPECIFIED);


编辑:链接不再起作用,但是这里是指向旧版本博客文章的链接


3
谢谢,这就是我想要的。
Andrey Agibalov 2011年

1
经过一些小的修改,对我来说,它就像是一种魅力。我重新实现,fillViewport并且onMeasure完全像ScrollView源(v2.1)。我还用:this( context, null );和更改了两个第一个构造函数this(context, attrs, R.attr.scrollViewStyle);。这样,我就可以在setVerticalScrollBarEnabledsetHorizontalScrollBarEnabled中使用滚动条。
olivier_sdg'5

对我来说也很棒!非常感谢你!
Avio 2012年

但是如何在水平模式下从垂直底部和右侧获得滚动拇指的大小和滚动位置
Ravi

10
看起来链接的帖子已经消失了。
loeschg 2014年

28

我找到了更好的解决方案。

XML:(design.xml)

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent">
  <FrameLayout android:layout_width="90px" android:layout_height="90px">
    <RelativeLayout android:id="@+id/container" android:layout_width="fill_parent" android:layout_height="fill_parent">        
    </RelativeLayout>
</FrameLayout>
</FrameLayout>

Java代码:

public class Example extends Activity {
  private RelativeLayout container;
  private int currentX;
  private int currentY;

  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.design);

    container = (RelativeLayout)findViewById(R.id.container);

    int top = 0;
    int left = 0;

    ImageView image1 = ...
    RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
    layoutParams.setMargins(left, top, 0, 0);               
    container.addView(image1, layoutParams);

    ImageView image2 = ...
    left+= 100;
    RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
    layoutParams.setMargins(left, top, 0, 0);               
    container.addView(image2, layoutParams);

    ImageView image3 = ...
    left= 0;
    top+= 100;
    RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
    layoutParams.setMargins(left, top, 0, 0);               
    container.addView(image3, layoutParams);

    ImageView image4 = ...
    left+= 100;     
    RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
    layoutParams.setMargins(left, top, 0, 0);               
    container.addView(image4, layoutParams);
  }     

  @Override 
  public boolean onTouchEvent(MotionEvent event) {
    switch (event.getAction()) {
        case MotionEvent.ACTION_DOWN: {
            currentX = (int) event.getRawX();
            currentY = (int) event.getRawY();
            break;
        }

        case MotionEvent.ACTION_MOVE: {
            int x2 = (int) event.getRawX();
            int y2 = (int) event.getRawY();
            container.scrollBy(currentX - x2 , currentY - y2);
            currentX = x2;
            currentY = y2;
            break;
        }   
        case MotionEvent.ACTION_UP: {
            break;
        }
    }
      return true; 
  }
}

可行!!!

如果要加载其他布局或控件,则结构相同。


刚刚尝试过,效果很好!它没有滚动指示器,也没有猛冲,但由于这是一种较低级别的方法,因此可以很容易地在此基础上构建这些东西。谢谢!
ubzack 2011年

对我来说,编写一个二维可滚动视图也很有效,该视图可通过网络通过SSH远程命令的结果输出实时输出。
pilcrowpipe

@Kronos:如果我只想水平滚动怎么办?我的y参数应该在container.scrollBy(currentX-x2,currentY-y2)中。有什么方法可以使它仅水平滚动?
阿什温

@Kronos:滚动太远。到达终点时,有什么方法可以停止滚动吗?
阿什温

按钮不可滚动,为什么?
salih kallai

25

我用它并且工作正常:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView android:id="@+id/ScrollView02" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            xmlns:android="http://schemas.android.com/apk/res/android">
<HorizontalScrollView android:id="@+id/HorizontalScrollView01" 
                      android:layout_width="wrap_content" 
                      android:layout_height="wrap_content">
<ImageView android:id="@+id/ImageView01"
           android:src="@drawable/pic" 
           android:isScrollContainer="true" 
           android:layout_height="fill_parent" 
           android:layout_width="fill_parent" 
           android:adjustViewBounds="true">
</ImageView>
</HorizontalScrollView>
</ScrollView>

源链接在这里:Android-spa


2
最多只能对静态内容“很好”地工作。多个Google工程师说过,您尝试使用的内容会出现问题(groups.google.com/group/android-developers/browse_frm/thread/…groups.google.com/group/android-beginners/browse_thread/thread/ ……)。
CommonsWare

4
@CommonsWare:尊重杰出的Google多位工程师,他们在这些线程中告诉您从头开始重写自己的组件:这是最好的方法。当然是真的。但是他们并没有说这个解决方案不好,如果可行的话……也许对他们来说要花一点时间,对我而言,最好使用现有组件来编写一些xml。“静态内容”是什么意思?我使用按钮和图像。
Redax 2011年

3
“静态内容”是指本身不涉及触摸事件的事物。我的观点(对于其他阅读此答案的人)是,虽然您的解决方案可能适用于单个ImageView可滚动内容,但它可能适用于或不适用于任意其他内容,并且Google相信您的方法会存在问题。Google的意见对于未来的发展也很重要-如果他们建议人们不要一开始就使用它,他们可能不会试图确保您的方法长期有效。
CommonsWare

这对我来说很好用...我正在使用线程刷新此滚动视图中的imageview
sonu thomas

19

我的解决方案基于Mahdi Hijazi回答,但没有任何自定义视图:

布局:

<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/scrollHorizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <ScrollView 
        android:id="@+id/scrollVertical"
        android:layout_width="wrap_content"
        android:layout_height="match_parent" >

        <WateverViewYouWant/>

    </ScrollView>
</HorizontalScrollView>

代码(onCreate / onCreateView):

    final HorizontalScrollView hScroll = (HorizontalScrollView) value.findViewById(R.id.scrollHorizontal);
    final ScrollView vScroll = (ScrollView) value.findViewById(R.id.scrollVertical);
    vScroll.setOnTouchListener(new View.OnTouchListener() { //inner scroll listener         
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            return false;
        }
    });
    hScroll.setOnTouchListener(new View.OnTouchListener() { //outer scroll listener         
        private float mx, my, curX, curY;
        private boolean started = false;

        @Override
        public boolean onTouch(View v, MotionEvent event) {
            curX = event.getX();
            curY = event.getY();
            int dx = (int) (mx - curX);
            int dy = (int) (my - curY);
            switch (event.getAction()) {
                case MotionEvent.ACTION_MOVE:
                    if (started) {
                        vScroll.scrollBy(0, dy);
                        hScroll.scrollBy(dx, 0);
                    } else {
                        started = true;
                    }
                    mx = curX;
                    my = curY;
                    break;
                case MotionEvent.ACTION_UP: 
                    vScroll.scrollBy(0, dy);
                    hScroll.scrollBy(dx, 0);
                    started = false;
                    break;
            }
            return true;
        }
    });

您可以更改滚动视图的顺序。只需在布局和代码中更改其顺序即可。显然,您要放置两个方向的布局/视图而不是WateverViewYouWant。


我强烈建议在hScroll.setOnTouchListener中返回false。当我更改为false时,列表开始在两个方向上沿手指向上“平滑自动”滚动。
2014年

1
首先水平滚动时有效。当垂直是第一次时,仅垂直地走
Irhala '17

6

选项#1:您可以提出一种新的UI设计,该设计不需要同时进行水平和垂直滚动。

选项2:您可以获取源代码,ScrollView并且HorizontalScrollView,学习核心Android团队如何实现这些,并创建自己BiDirectionalScrollView的实现。

选项#3:可以摆脱使用小部件系统并直接绘制到Canvas的依赖项。

选项#4:如果偶然发现似乎可以实现您想要的功能的开源应用程序,请查看它们是如何实现的。


6

试试这个

<?xml version="1.0" encoding="utf-8"?>
<ScrollView android:id="@+id/Sview" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        xmlns:android="http://schemas.android.com/apk/res/android">
<HorizontalScrollView 
   android:id="@+id/hview" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content">
<ImageView .......
 [here xml code for image]
</ImageView>
</HorizontalScrollView>
</ScrollView>


2

我有解决您问题的方法。您可以检查ScrollView代码,它仅处理垂直滚动,而忽略水平滚动并进行修改。我想要一个像webview的视图,因此对ScrollView进行了修改,对我来说效果很好。但这可能不适合您的需求。

让我知道您要定位的UI。

问候,

拉维·潘迪特


1

玩代码,您可以将Horizo​​ntalScrollView放入ScrollView。因此,您可以在同一视图中使用两种滚动方法。

来源:http : //androiddevblog.blogspot.com/2009/12/creating-two-dimensions-scroll-view.html

希望对您有所帮助。


1
这不是一个好的解决方案。如果您注意到,在拖动视图时,您总是在垂直或水平拖动。您无法使用嵌套滚动视图沿对角线拖动。
Sky Kelsey

与缺少对角滚动相比,更糟糕的是缺少两个滚动条,因为它们是嵌套的,因此两个滚动条都保留在视图边缘。更好的ScrollView是答案,而由于完整性和通用性,此时Cachapa与Matt Clark代码的链接是最佳解决方案。
Huperniketes 2012年

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.