Initial commit from non tracked working directory

This commit is contained in:
Giovanni Harting
2015-08-13 03:27:24 +02:00
parent 7fbc976571
commit 792cc20cd1
74 changed files with 2990 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package com.idlegandalf.ledd;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class DrawerFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.drawer_fragment, container, false);
}
}