如何在静态方法中从onDateSet()赋值

时间:2016-07-05 09:34:34

标签: java android static

我的问题是我使用DatePickerDialog来选择日期。我想将arg1arg2arg2分配给静态方法中的变量 - 最终不能使用因为它不是此变量的init,而static中的其他变量method()也不能使用,因为它是静态方法......

static method() {
    int variable;

    DatePickerDialog ... {
        onDateSet(...) { 
            variable = arg1; // or smething like this
        }
    }
}

如何在arg1 static中显示method()或创建类似getArgs()的内容?

0 个答案:

没有答案