mirror of
https://github.com/vanitasvitae/Spherical
synced 2025-09-10 10:49:42 +02:00
Introduce Fragments
This commit is contained in:
parent
3fbf5b67ec
commit
4b187ede43
10 changed files with 239 additions and 114 deletions
22
app/src/main/java/de/trac/spherical/ProgressFragment.java
Normal file
22
app/src/main/java/de/trac/spherical/ProgressFragment.java
Normal file
|
@ -0,0 +1,22 @@
|
|||
package de.trac.spherical;
|
||||
|
||||
import android.os.Bundle;
|
||||
import android.support.v4.app.Fragment;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
|
||||
/**
|
||||
* Created by vanitas on 18.09.17.
|
||||
*/
|
||||
public class ProgressFragment extends Fragment {
|
||||
|
||||
@Override
|
||||
public View onCreateView(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState) {
|
||||
return inflater.inflate(R.layout.fragment_progress, parent, false);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onViewCreated(View view, Bundle savedInstanceState) {
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue