私には2つのクラスがあります。1つはアクティビティクラスで、もう1つは非アクティビティです。そして、macAdressを返すためのnon-activityクラス内にあるメソッドを呼び出します。
アクティビティクラス:
public class Control extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
deneme d = new deneme(this); // i has tried (getApplicatonContext)
String x = d.macadress();
Toast.makeText(getApplicationContext(), x, Toast.LENGTH_LONG).show();
}}
および非アクティビティクラス:
public class deneme {
Context mcontext ;
WifiManager wm;
public deneme(Context mcontext){
this.mcontext = mcontext;
}
public String macadress(){
wm = (WifiManager)mcontext.getSystemService(Context.WIFI_SERVICE);
String m_szWLANMAC = wm.getConnectionInfo().getMacAddress();
return m_szWLANMAC;
}}
ただし、メソッドはnullを返します。ACCESS_WIFI_STATEの権限があります。