2012-01-18 10:19:01 +00:00
|
|
|
package org.fox.ttrss;
|
|
|
|
|
|
|
|
import android.os.Bundle;
|
2012-06-19 14:24:22 +00:00
|
|
|
import android.support.v4.app.Fragment;
|
2012-01-18 10:19:01 +00:00
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
|
|
|
|
public class DummyFragment extends Fragment {
|
|
|
|
@Override
|
|
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
|
|
|
|
2012-06-20 09:05:09 +00:00
|
|
|
View view = inflater.inflate(R.layout.dummy_fragment, container, false);
|
2012-01-18 10:19:01 +00:00
|
|
|
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
}
|