android non activity
how to开发者_开发技巧 create a class which not extended Activity & how can i use it class?
Depends on what you want but a regular class would be
public class Name {}
and then
Name name = new Name()
*edit: Works just like Java on you computer
精彩评论