Adding new frag for packed list
This commit is contained in:
parent
0b4bf5f976
commit
9676190ea6
|
@ -0,0 +1,7 @@
|
|||
package hikapro.com.backpack.model;
|
||||
|
||||
/**
|
||||
* Created by tariel on 12/05/16.
|
||||
*/
|
||||
public class BagModel {
|
||||
}
|
|
@ -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);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
package hikapro.com.backpack.view.fragments;
|
||||
|
||||
/**
|
||||
* Created by tariel on 12/05/16.
|
||||
*/
|
||||
public class BagFragment {
|
||||
}
|
|
@ -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>
|
Loading…
Reference in New Issue