我在看android4.2新API說明的時候,看到了 UserManager類,其中有一個isUserAGoat ()方法:
public boolean isUserAGoat ()
Used to determine whether the user making this call is subject to teleportations.
Returns whether the user making this call is a goat.
請問這個isUserAGoat ()方法是怎麼用的?
應該是未來要用的某個特殊方法,目前全部都是返回false的。
/**
* Used to determine whether the user making this call is subject to
* teleportations.
* @return whether the user making this call is a goat
*/
public boolean isUserAGoat() {
return false;
}