Skip to content

Instantly share code, notes, and snippets.

@michalciolek
Created April 13, 2016 11:12
Show Gist options
  • Save michalciolek/5a52de27fea6b8e412df918919547b80 to your computer and use it in GitHub Desktop.
Save michalciolek/5a52de27fea6b8e412df918919547b80 to your computer and use it in GitHub Desktop.
lol
EditText titleQuery;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_find_book);
titleQuery = (EditText) findViewById(R.id.title_query);
}
public void findBook(View view) {
String titleToFind = titleQuery.getText().toString();
if (!titleToFind.isEmpty()) {
//TODO znajdź książkę
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment