怎么才能在适配器里面得到getWindow方法啊传个context不行 又不能传getActivity
怎么才能拿到给getWindow..getAttributes()
public void backgroundAlpha(float bgAlpha)
{
WindowManager.LayoutParams lp =getWindow().getAttributes();
lp.alpha = bgAlpha; //0.0-1.0
getWindow().setAttributes(lp);
}
安卓在适配器里面设置屏幕透明度
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
1条回答 默认 最新
Grindstone_Fos 2017-10-20 07:19关注把Activity对象作为参数传过去啊。。在adapter的构造方法里面加上Activity参数啊
getWindow()是Activity类的方法。/** * Retrieve the current {@link android.view.Window} for the activity. * This can be used to directly access parts of the Window API that * are not available through Activity/Screen. * * @return Window The current window, or null if the activity is not * visual. */ public Window getWindow() { return mWindow; }例子:
Class TestActivity:
...
TestAdapter adapter = new TestAdapter(this);
...Class TestAdapter:
...
Activity mActivity;
TestAdapter(Activity activity){
mActivity = activity;
}
...
public void backgroundAlpha(float bgAlpha)
{
WindowManager.LayoutParams lp =mActivity.getWindow().getAttributes();
lp.alpha = bgAlpha; //0.0-1.0
getWindow().setAttributes(lp);
}
...本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报