Rename some layout files as they are used for specific purposes

master
Daniele Gobbetti 2017-04-09 16:03:07 +02:00
parent fe626eb11e
commit 5bf6251dc5
4 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ public class AppBlacklistActivity extends GBActivity {
RecyclerView appListView = (RecyclerView) findViewById(R.id.appListView);
appListView.setLayoutManager(new LinearLayoutManager(this));
appBlacklistAdapter = new AppBlacklistAdapter(R.layout.item_with_checkbox, this);
appBlacklistAdapter = new AppBlacklistAdapter(R.layout.item_app_blacklist, this);
appListView.setAdapter(appBlacklistAdapter);

View File

@ -276,7 +276,7 @@ public abstract class AbstractAppManagerFragment extends Fragment {
}
});
appListView.setLayoutManager(new LinearLayoutManager(getActivity()));
mGBDeviceAppAdapter = new GBDeviceAppAdapter(appList, R.layout.item_with_details_and_drag_handle, this);
mGBDeviceAppAdapter = new GBDeviceAppAdapter(appList, R.layout.item_pebble_watchapp, this);
appListView.setAdapter(mGBDeviceAppAdapter);
ItemTouchHelper.Callback appItemTouchHelperCallback = new AppItemTouchHelperCallback(mGBDeviceAppAdapter);