I am trying to have 2 things in my Android application.
Get the device id and then open a webpage with this id . eg myserver.com/deviceId
My main java class looks like this :
package es.unican.CityInfo;
import android.os.Bundle;
import android.app.Activity;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.provider.Settings.Secure;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
WebView mywebview = (WebView) findViewById(R.id.webview);
mywebview.loadUrl("http://www.google.com");
//enabling Javascript
WebSettings webSettings = mywebview.getSettings();
webSettings.setJavaScriptEnabled(true);
//opening links in my webview. if you delete this line , any link pressed will cause the browser to start
mywebview.setWebViewClient(new WebViewClient());
}
}
In order to get the device id i read that i should do something like this :
import android.provider.Settings.Secure;
private String android_id = Secure.getString(getContext().getContentResolver(),
Secure.ANDROID_ID);
However i dont understand where i should place the android_id code as i always get an error.
The error is:
Multiple markers at this line:
- The method getcontext() is undefined for the type MainActivity
- Illegal modifier for parameter android_id; only final is permitted