Skip to content

Instantly share code, notes, and snippets.

@elephantum
Created September 16, 2011 10:11
Show Gist options
  • Save elephantum/1221744 to your computer and use it in GitHub Desktop.
Save elephantum/1221744 to your computer and use it in GitHub Desktop.
public class EastActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final EditText username = (EditText)findViewById(R.id.clientid);
final EditText password = (EditText)findViewById(R.id.passwordid);
final Button button = (Button)findViewById(R.id.ok);
final TextView txtResult = (TextView)findViewById(R.id.content);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment