aboutsummaryrefslogtreecommitdiff
path: root/content/WidgetData/Application/src/main/java/com/example/android/widgetdata/WidgetDataFragment.java
blob: 5bc990fd1eb5aa2b787fb158b515bf52daa468f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.example.android.widgetdata;

import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

/**
 * A Placeholder Fragment that shows the intro text from a layout.
 */
public class WidgetDataFragment extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        return inflater.inflate(R.layout.fragment, null);
    }
}