mirror of
https://github.com/libretro/RetroArch
synced 2025-02-04 21:40:02 +00:00
Indicate downloadable cores are still in development for the Android front-end.
This commit is contained in:
parent
a60d49293b
commit
bf45b93775
@ -1,12 +1,27 @@
|
|||||||
package com.retroarch.browser.coremanager.fragments;
|
package com.retroarch.browser.coremanager.fragments;
|
||||||
|
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.support.v4.app.Fragment;
|
||||||
import android.support.v4.app.ListFragment;
|
import android.support.v4.app.ListFragment;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.widget.TextView;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@link ListFragment} that is responsible for showing
|
* {@link ListFragment} that is responsible for showing
|
||||||
* cores that are able to be downloaded or are not installed.
|
* cores that are able to be downloaded or are not installed.
|
||||||
*/
|
*/
|
||||||
public final class DownloadableCoresFragment extends ListFragment
|
public final class DownloadableCoresFragment extends Fragment
|
||||||
{
|
{
|
||||||
// TODO: Implement.
|
// TODO: Implement complete functionality.
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
|
||||||
|
{
|
||||||
|
TextView tv = new TextView(getActivity());
|
||||||
|
tv.setText("In development, just a little longer!");
|
||||||
|
|
||||||
|
return tv;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user