Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AboutFragmentCreditsTab.java « about « fragment « android « notes « owncloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e5b5e18006c9d6167ffcac188eae369e897693c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package it.niedermann.owncloud.notes.android.fragment.about;

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

import it.niedermann.owncloud.notes.R;

public class AboutFragmentCreditsTab extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        return inflater.inflate(R.layout.fragment_about_credits_tab, container, false);
    }
}