1

Gallery 类型已弃用。
类型 Gallery 中的 onKeyDown(int, KeyEvent) 方法已弃用。

示例代码

import android.content.Context;
import android.util.AttributeSet;
import android.view.KeyEvent;
import android.view.MotionEvent;
import android.widget.Gallery;

public class mygallery extends Gallery {
    public mygallery(Context ctx, AttributeSet attrSet) {
        super(ctx, attrSet);
    }

    private boolean isScrollingLeft(MotionEvent e1, MotionEvent e2){ 
           return e2.getX() > e1.getX(); 
        }

    @Override
    public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY){
      int kEvent;
      if(e2.getX() > e1.getX()){
        kEvent = KeyEvent.KEYCODE_DPAD_LEFT;
      }
      else{
        kEvent = KeyEvent.KEYCODE_DPAD_RIGHT;
      }
      onKeyDown(kEvent, null);
      return true;  
    }
}

如何解决这个已弃用

4

2 回答 2

0

在 xml 文件中使用默认图库并使用您的自定义视图创建其 ImageAdapter。它将在该适配器的 getView() 中完成。

于 2013-06-27T13:11:10.117 回答
0

我想你想使用自定义水平 listView..

所以,你检查以下链接......

http://sandyandroidtutorials.blogspot.in/2013/06/horizo​​ntal-listview-tutorial.html

这是提供水平 ListView 教程,这对你很有用。

或试试这个

http://www.androidhub4you.com/2012/09/horizo​​ntal-scroll-view-in-android.html

于 2013-06-27T12:41:02.337 回答