Fix list view bugs (mostly Ouya related)

This commit is contained in:
Cameron Gutman
2014-07-04 18:57:03 -07:00
parent 155432b4b8
commit 9e20d25093
8 changed files with 25 additions and 17 deletions
+2 -1
View File
@@ -67,9 +67,10 @@ public class AppView extends Activity {
// Setup the list view
appList = (ListView)findViewById(R.id.pcListView);
appListAdapter = new ArrayAdapter<AppObject>(this, R.layout.simplerow);
appListAdapter = new ArrayAdapter<AppObject>(this, R.layout.simplerow, R.id.rowTextView);
appListAdapter.setNotifyOnChange(false);
appList.setAdapter(appListAdapter);
appList.setItemsCanFocus(true);
appList.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int pos,