mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
Merge pull request #460 from lioncash/master
Indicate downloadable cores are still in development for the Android front-end.
This commit is contained in:
commit
b74150d82a
@ -1,12 +1,27 @@
|
||||
package com.retroarch.browser.coremanager.fragments;
|
||||
|
||||
import android.os.Bundle;
|
||||
import android.support.v4.app.Fragment;
|
||||
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
|
||||
* 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…
Reference in New Issue
Block a user