Back to project page smsgateway-android.
The source code is released under:
GNU General Public License
If you think the Android project smsgateway-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.nubgames.smsgateway; /* w ww . ja va 2 s .c o m*/ import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class Password extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.password); TextView password = (TextView) findViewById(R.id.password_display); password.setText(Settings.getPhoneID(this.getContentResolver())); } }