Android中怎么将子函数中的值返回onCreate

2025-05-02 00:34:50
推荐回答(1个)
回答1:

在函数中 return 返回值即可
例如
public Object test(){
return new Object();

}