Skip to content

Commit

Permalink
used String.valueOf for integer in text view
Browse files Browse the repository at this point in the history
  • Loading branch information
teddywilson committed Jul 10, 2017
1 parent 9e0568f commit 30b4322
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ protected void onCreate(@Nullable Bundle savedInstanceState) {
}

sortDropDown = (Spinner) findViewById(R.id.sort_selection);
final ArrayAdapter<CharSequence> spinnerAdapter = ArrayAdapter.createFromResource(this,
ArrayAdapter<CharSequence> spinnerAdapter = ArrayAdapter.createFromResource(this,
R.array.sort_functions,
R.layout.spinner_item);
spinnerAdapter.setDropDownViewResource(R.layout.support_simple_spinner_dropdown_item);
Expand Down

0 comments on commit 30b4322

Please sign in to comment.