Hallo,
ich versuche gerade eine Anwendung für mein Android zu schreiben. Sie Sieht wiefolgt aus:
package locater.test;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
import android.content.Context;
import android.telephony.TelephonyManager;
import android.telephony.gsm.GsmCellLocation;
public class test extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
GsmCellLocation location;
location = (GsmCellLocation) tm.getCellLocation();
int cellID = location.getCid();
TextView tv = new TextView(this);
String st;
st = String.format("ID: %d\n", cellID);
tv.setText(st);
setContentView(tv);
}
}
Leider stuertzt sie immer ab wenn ich tm.getCellLocation(); aufrufe. Kann mir jemand auf die Spruenge helfen was ich falsch mache? Danke Lisa