Добавлен фрагмент для TreeView.
This commit is contained in:
parent
c71c572a12
commit
9983b3cd1c
@ -0,0 +1,18 @@
|
|||||||
|
package ru.volgorobot.vrcatalog;
|
||||||
|
|
||||||
|
import android.app.Fragment;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.support.annotation.Nullable;
|
||||||
|
|
||||||
|
import com.unnamed.b.atv.model.TreeNode;
|
||||||
|
import com.unnamed.b.atv.view.AndroidTreeView;
|
||||||
|
|
||||||
|
public class TreeViewFragment extends Fragment {
|
||||||
|
|
||||||
|
private AndroidTreeView treeView;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onCreate(@Nullable Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
}
|
||||||
|
}
|
6
app/src/main/res/layout/fragment_default.xml
Normal file
6
app/src/main/res/layout/fragment_default.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<android.support.v7.widget.LinearLayoutCompat
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
</android.support.v7.widget.LinearLayoutCompat>
|
Loading…
Reference in New Issue
Block a user