Rename some layout files as they are used for specific purposes
This commit is contained in:
parent
fe626eb11e
commit
5bf6251dc5
|
@ -64,7 +64,7 @@ public class AppBlacklistActivity extends GBActivity {
|
||||||
RecyclerView appListView = (RecyclerView) findViewById(R.id.appListView);
|
RecyclerView appListView = (RecyclerView) findViewById(R.id.appListView);
|
||||||
appListView.setLayoutManager(new LinearLayoutManager(this));
|
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);
|
appListView.setAdapter(appBlacklistAdapter);
|
||||||
|
|
||||||
|
|
|
@ -276,7 +276,7 @@ public abstract class AbstractAppManagerFragment extends Fragment {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
appListView.setLayoutManager(new LinearLayoutManager(getActivity()));
|
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);
|
appListView.setAdapter(mGBDeviceAppAdapter);
|
||||||
|
|
||||||
ItemTouchHelper.Callback appItemTouchHelperCallback = new AppItemTouchHelperCallback(mGBDeviceAppAdapter);
|
ItemTouchHelper.Callback appItemTouchHelperCallback = new AppItemTouchHelperCallback(mGBDeviceAppAdapter);
|
||||||
|
|
Loading…
Reference in New Issue