diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2013-06-09 17:42:00 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2013-06-09 17:42:00 +0200 |
| commit | 6c346e0e7ba72dcfae10b2b494f964857c9a14d4 (patch) | |
| tree | a6abf489855dab209f577206d32b36637fbe157b /main/src/cgeo/geocaching/UsefulAppsActivity.java | |
| parent | afe3dd26ad820b53e7b1db94cade9a104d2ea063 (diff) | |
| download | cgeo-6c346e0e7ba72dcfae10b2b494f964857c9a14d4.zip cgeo-6c346e0e7ba72dcfae10b2b494f964857c9a14d4.tar.gz cgeo-6c346e0e7ba72dcfae10b2b494f964857c9a14d4.tar.bz2 | |
refactoring: use activity names for layouts
Diffstat (limited to 'main/src/cgeo/geocaching/UsefulAppsActivity.java')
| -rw-r--r-- | main/src/cgeo/geocaching/UsefulAppsActivity.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/cgeo/geocaching/UsefulAppsActivity.java b/main/src/cgeo/geocaching/UsefulAppsActivity.java index b74db83..8093bba 100644 --- a/main/src/cgeo/geocaching/UsefulAppsActivity.java +++ b/main/src/cgeo/geocaching/UsefulAppsActivity.java @@ -67,16 +67,16 @@ public class UsefulAppsActivity extends AbstractActivity { @Override public void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState, R.layout.useful_apps_activity); + super.onCreate(savedInstanceState, R.layout.usefulapps_activity); Views.inject(this); - list.setAdapter(new ArrayAdapter<HelperApp>(this, R.layout.useful_apps_item, HELPER_APPS) { + list.setAdapter(new ArrayAdapter<HelperApp>(this, R.layout.usefulapps_item, HELPER_APPS) { @Override public View getView(int position, View convertView, android.view.ViewGroup parent) { View rowView = convertView; if (null == rowView) { - rowView = getLayoutInflater().inflate(R.layout.useful_apps_item, null); + rowView = getLayoutInflater().inflate(R.layout.usefulapps_item, null); } ViewHolder holder = (ViewHolder) rowView.getTag(); if (null == holder) { |
