gpt4 book ai didi

android - 在android中滚动时更改按钮的背景图像

转载 作者:行者123 更新时间:2023-11-29 00:13:43 24 4
gpt4 key购买 nike

很抱歉没有发布任何代码。在 stackoverflow 和谷歌上搜索但找不到合适的解决方案,如果您对此有任何想法或技巧,请帮帮我。

要求:

我有许多按钮根据网络的要求以编程方式创建。并将所有按钮的背景图像设置为灰度。我已经完成了这部分但是当滚动水平 scollview 然后我想改变那个按钮(滚动时可见)背景图像彩色(初始加载灰度)和特定时间让我们假设 10 秒按钮背景设置初始状态(灰度) .

主题:

Change button background image when scolling on visiable view's button. for cetain time interval(10 second).

`

问题:

我无法在水平 View 中获取当前可见的按钮,也无法更改该按钮的背景彩色图像(第一次查看加载)。我只想以编程方式进行此操作,因为所有图像都来自服务器端。

任何想法,如何完成这项工作或这项任务的任何引用。

注意:我创建了 button 查看和设置图像背景,并在 linearlayout 上添加图像,并将该线性布局添加到其他 mainlinearlayout 并在 horizo​​ntalview 布局上添加 mainlinearlayout。

我的代码示例 fragment :

public class CustomAdWithTitle extends LinearLayout{
private LinearLayout LinearCollectionAds;
private List<CommericalClassifiedAds> listCommericalAds;

HorizontalScrollView commercialH = new HorizontalScrollView(mcontext);
commercialH.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
LinearLayout commercialL = new LinearLayout(mcontext);
commercialL.setOrientation(LinearLayout.HORIZONTAL);
commercialL.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));

LinearLayout LinearCollectionAds= new LinearLayout(mcontext);
LinearCollectionAds.setOrientation(LinearLayout.VERTICAL);
LinearCollectionAds.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,
LayoutParams.WRAP_CONTENT));
for (int i = 0; i < listCommericalAds.size(); i++) {
try {
commercialL.addView(listCommericalAds.get(i));
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}

}

commercialH.addView(commercialL);
LinearCollectionAds.addView(commercialH);
this.addView(LinearCollectionAds);
}

......................

CommericalClassifiedAds 列表,它可以返回带有按钮 View 的相对布局。我只添加按钮背景,并在第一次加载 View 时设置灰度。

public class CommericalClassifiedAds extends RelativeLayout  {
}

最佳答案

让我们看看我是否猜对了。要更改按钮后面的图像,您可以使用 StateListDrawable

StateListDrawable stateList = new StateListDrawable();
stateList.addState(new int[] { android.R.attr.state_selected }, bitmapFromServer);
stateList.addState(new int[] {}, bitmapGrayScale);

创建时将其添加到每个 CommericalClassifiedAds 背景,而不是按钮背景。 Register a Scroll listener到 commercialH 并更新其中的 UI。

private static boolean wait;
private static Handler handler = new Handler();
private static Runnable delayRunnable = new Runnable() {

@Override
public void run() {
int childcount = commercialL.getChildCount();
for (int i=0; i < childcount; i++){
commercialL.getChildAt(i).setSelected(false);
}
};

@Override
public void onScrollChanged() {
//this method can be called very frequently so only run selective
if (!wait) {
handler.removeCallbacks(delayRunnable);
wait = true;
int childcount = commercialL.getChildCount();
for (int i=0; i < childcount; i++){
commercialL.getChildAt(i).setSelected(true);
}
handler.postDelayed(new Runnable() {

@Override
public void run() {
wait = false;
}
}, 2000);
handler.postDelayed(delayRunnable, 10000);
}
}

如果运行缓慢我会首先重新考虑布局结构。看起来你的布局比需要的多,然后优化 onScroll。

我对错误有所保留,它没有经过测试,但它可以让您了解如何解决您的问题。

关于android - 在android中滚动时更改按钮的背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28140902/

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