Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Change the name of the XML layout file gamelist_folderbrows…
…er_list.xml to gamelist_folderbrowser_list_item.xml. More accurate name on what it is.
  • Loading branch information
lioncash committed Nov 16, 2013
1 parent 21a196f commit c90ce1a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Expand Up @@ -96,7 +96,7 @@ else if (entry.isFile() && hasExtension)
if (!currDir.getPath().equalsIgnoreCase("/"))
dir.add(0, new FolderBrowserItem("..", getString(R.string.parent_directory), currDir.getParent()));

adapter = new FolderBrowserAdapter(m_activity, R.layout.gamelist_folderbrowser_list, dir);
adapter = new FolderBrowserAdapter(m_activity, R.layout.gamelist_folderbrowser_list_item, dir);
mFolderBrowserList = (ListView) rootView.findViewById(R.id.gamelist);
mFolderBrowserList.setAdapter(adapter);
}
Expand Down
Expand Up @@ -94,7 +94,7 @@ private void Fill()
}
Collections.sort(fls);

mGameAdapter = new GameListAdapter(mMe, R.layout.gamelist_folderbrowser_list, fls);
mGameAdapter = new GameListAdapter(mMe, R.layout.gamelist_folderbrowser_list_item, fls);
setListAdapter(mGameAdapter);

if (fls.isEmpty())
Expand Down

0 comments on commit c90ce1a

Please sign in to comment.