Skip to content

Instantly share code, notes, and snippets.

@itsff
Created October 6, 2013 07:20
Show Gist options
  • Save itsff/6850678 to your computer and use it in GitHub Desktop.
Save itsff/6850678 to your computer and use it in GitHub Desktop.
// ... all necessary imports ...
package net.filipfracz.samples;
class MainActivityHelper
{
public EditText name;
public Button save_button;
public MainActivityHelper(Context context)
{
name = (EditText) context.findViewById(R.id.name);
save_button = (Button) context.findViewById(R.id.save);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment