Added wiki locations (blank) fragment.

master
Tomasz Półgrabia 2016-08-28 14:44:25 +02:00
parent e59fc41b8e
commit 58411cf77e
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,30 @@
package pl.tpolgrabia.urbanexplorer.fragments;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import pl.tpolgrabia.urbanexplorer.R;
/**
* A simple {@link Fragment} subclass.
*/
public class WikiLocationsFragment extends Fragment {
public WikiLocationsFragment() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_wiki_locations, container, false);
}
}

View File

@ -0,0 +1,13 @@
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="pl.tpolgrabia.urbanexplorer.fragments.WikiLocationsFragment">
<!-- TODO: Update blank fragment layout -->
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/hello_blank_fragment"/>
</FrameLayout>