Created
October 6, 2013 07:20
-
-
Save itsff/6850678 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ... 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