Adding new frag for packed list

This commit is contained in:
Tariel Hlontsi 2016-05-12 20:41:15 +03:00
parent 0b4bf5f976
commit 9676190ea6
4 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package hikapro.com.backpack.model;
/**
* Created by tariel on 12/05/16.
*/
public class BagModel {
}

View File

@ -0,0 +1,14 @@
package hikapro.com.backpack.presenter.adapters;
import hikapro.com.backpack.presenter.Presenter;
import hikapro.com.backpack.presenter.adapters.ItemListAdapter;
/**
* Created by tariel on 12/05/16.
*/
public class BagAdapter extends ItemListAdapter {
public BagAdapter(Presenter.ItemList presenter) {
super(presenter);
}
}

View File

@ -0,0 +1,7 @@
package hikapro.com.backpack.view.fragments;
/**
* Created by tariel on 12/05/16.
*/
public class BagFragment {
}

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
</LinearLayout>