gpt4 book ai didi

android - 关于创建包含按钮的图库 View 的问题?

转载 作者:行者123 更新时间:2023-11-29 14:11:47 27 4
gpt4 key购买 nike

我创建了一个包含按钮的图库。

示例代码如下:

public class Adapter extends BaseAdapter {
private Context mContext;

public ImageAdapter(Context c) {
mContext = c;
}

public int getCount() {
return 10;
}

public Object getItem(int position) {
return position;
}

public long getItemId(int position) {
return position;
}

public View getView(int position, View convertView, ViewGroup parent) {
Button but = new Button(mContext);
return but;
}
}

画廊 View 显示良好。问题是这个画廊不再可滚动。如果我在 getView 方法中将 Button 替换为 ImageView,则图库 View 可以很好地滚动。那么,如何制作包含滚动按钮的图库?

谢谢。

最佳答案

Gallery 吃触摸事件。您不能在其中放置任何交互式控件

关于android - 关于创建包含按钮的图库 View 的问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2285536/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com