Search in sources :

Example 26 with LoadingViewController

use of com.android.settings.widget.LoadingViewController in project android_packages_apps_Settings by DirtyUnicorns.

the class ManageApplicationsTest method onRebuildComplete_shouldHideLoadingView.

@Test
public void onRebuildComplete_shouldHideLoadingView() {
    final Context context = RuntimeEnvironment.application;
    final ManageApplications fragment = mock(ManageApplications.class);
    final View loadingContainer = mock(View.class);
    when(loadingContainer.getContext()).thenReturn(context);
    final View listContainer = mock(View.class);
    when(listContainer.getVisibility()).thenReturn(View.INVISIBLE);
    when(listContainer.getContext()).thenReturn(context);
    ReflectionHelpers.setField(fragment, "mLoadingContainer", loadingContainer);
    ReflectionHelpers.setField(fragment, "mListContainer", listContainer);
    when(fragment.getActivity()).thenReturn(mock(Activity.class));
    final Handler handler = mock(Handler.class);
    final ManageApplications.ApplicationsAdapter adapter = spy(new ManageApplications.ApplicationsAdapter(mState, fragment, 0));
    final LoadingViewController loadingViewController = mock(LoadingViewController.class);
    ReflectionHelpers.setField(adapter, "mLoadingViewController", loadingViewController);
    ReflectionHelpers.setField(adapter, "mFgHandler", handler);
    ReflectionHelpers.setField(adapter, "mFilterMode", -1);
    // app loading not yet completed
    ReflectionHelpers.setField(adapter, "mHasReceivedLoadEntries", false);
    adapter.updateLoading();
    // app loading completed
    ReflectionHelpers.setField(adapter, "mHasReceivedLoadEntries", true);
    final ArrayList<ApplicationsState.AppEntry> appList = new ArrayList<>();
    appList.add(mock(ApplicationsState.AppEntry.class));
    when(mSession.getAllApps()).thenReturn(appList);
    adapter.onRebuildComplete(null);
    verify(loadingViewController).showContent(true);
}
Also used : Context(android.content.Context) ArrayList(java.util.ArrayList) Activity(android.app.Activity) Handler(android.os.Handler) LoadingViewController(com.android.settings.widget.LoadingViewController) View(android.view.View) TextView(android.widget.TextView) Test(org.junit.Test)

Example 27 with LoadingViewController

use of com.android.settings.widget.LoadingViewController in project android_packages_apps_Settings by DirtyUnicorns.

the class ManageApplicationsTest method updateLoading_appNotLoaded_shouldDelayCallToHandleLoadingContainer.

@Test
public void updateLoading_appNotLoaded_shouldDelayCallToHandleLoadingContainer() {
    final ManageApplications fragment = mock(ManageApplications.class);
    ReflectionHelpers.setField(fragment, "mLoadingContainer", mock(View.class));
    ReflectionHelpers.setField(fragment, "mListContainer", mock(View.class));
    when(fragment.getActivity()).thenReturn(mock(Activity.class));
    final Handler handler = mock(Handler.class);
    final ManageApplications.ApplicationsAdapter adapter = spy(new ManageApplications.ApplicationsAdapter(mState, fragment, 0));
    final LoadingViewController loadingViewController = mock(LoadingViewController.class);
    ReflectionHelpers.setField(adapter, "mLoadingViewController", loadingViewController);
    ReflectionHelpers.setField(adapter, "mFgHandler", handler);
    // app loading not yet completed
    ReflectionHelpers.setField(adapter, "mHasReceivedLoadEntries", false);
    adapter.updateLoading();
    verify(loadingViewController).showLoadingViewDelayed();
}
Also used : Activity(android.app.Activity) Handler(android.os.Handler) LoadingViewController(com.android.settings.widget.LoadingViewController) View(android.view.View) TextView(android.widget.TextView) Test(org.junit.Test)

Example 28 with LoadingViewController

use of com.android.settings.widget.LoadingViewController in project android_packages_apps_Settings by crdroidandroid.

the class RunningServices method onCreateView.

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View rootView = inflater.inflate(R.layout.manage_applications_running, null);
    mRunningProcessesView = rootView.findViewById(R.id.running_processes);
    mRunningProcessesView.doCreate();
    mLoadingContainer = rootView.findViewById(R.id.loading_container);
    mLoadingViewController = new LoadingViewController(mLoadingContainer, mRunningProcessesView);
    return rootView;
}
Also used : LoadingViewController(com.android.settings.widget.LoadingViewController) View(android.view.View)

Example 29 with LoadingViewController

use of com.android.settings.widget.LoadingViewController in project android_packages_apps_Settings by crdroidandroid.

the class DataUsageList method onViewCreated.

@Override
public void onViewCreated(View v, Bundle savedInstanceState) {
    super.onViewCreated(v, savedInstanceState);
    mHeader = setPinnedHeaderView(R.layout.apps_filter_spinner);
    mHeader.findViewById(R.id.filter_settings).setOnClickListener(btn -> {
        final Bundle args = new Bundle();
        args.putParcelable(DataUsageList.EXTRA_NETWORK_TEMPLATE, mTemplate);
        startFragment(DataUsageList.this, BillingCycleSettings.class.getName(), R.string.billing_cycle, 0, args);
    });
    mCycleSpinner = mHeader.findViewById(R.id.filter_spinner);
    mCycleAdapter = new CycleAdapter(mCycleSpinner.getContext(), new SpinnerInterface() {

        @Override
        public void setAdapter(CycleAdapter cycleAdapter) {
            mCycleSpinner.setAdapter(cycleAdapter);
        }

        @Override
        public void setOnItemSelectedListener(OnItemSelectedListener listener) {
            mCycleSpinner.setOnItemSelectedListener(listener);
        }

        @Override
        public Object getSelectedItem() {
            return mCycleSpinner.getSelectedItem();
        }

        @Override
        public void setSelection(int position) {
            mCycleSpinner.setSelection(position);
        }
    }, mCycleListener, true);
    mLoadingViewController = new LoadingViewController(getView().findViewById(R.id.loading_container), getListView());
    mLoadingViewController.showLoadingViewDelayed();
}
Also used : Bundle(android.os.Bundle) SpinnerInterface(com.android.settings.datausage.CycleAdapter.SpinnerInterface) OnItemSelectedListener(android.widget.AdapterView.OnItemSelectedListener) LoadingViewController(com.android.settings.widget.LoadingViewController)

Example 30 with LoadingViewController

use of com.android.settings.widget.LoadingViewController in project android_packages_apps_Settings by crdroidandroid.

the class ManageApplicationsTest method onRebuildComplete_shouldHideLoadingView.

@Test
public void onRebuildComplete_shouldHideLoadingView() {
    final Context context = RuntimeEnvironment.application;
    final ManageApplications fragment = mock(ManageApplications.class);
    final View loadingContainer = mock(View.class);
    when(loadingContainer.getContext()).thenReturn(context);
    final View listContainer = mock(View.class);
    when(listContainer.getVisibility()).thenReturn(View.INVISIBLE);
    when(listContainer.getContext()).thenReturn(context);
    ReflectionHelpers.setField(fragment, "mLoadingContainer", loadingContainer);
    ReflectionHelpers.setField(fragment, "mListContainer", listContainer);
    when(fragment.getActivity()).thenReturn(mock(Activity.class));
    final Handler handler = mock(Handler.class);
    final ManageApplications.ApplicationsAdapter adapter = spy(new ManageApplications.ApplicationsAdapter(mState, fragment, 0));
    final LoadingViewController loadingViewController = mock(LoadingViewController.class);
    ReflectionHelpers.setField(adapter, "mLoadingViewController", loadingViewController);
    ReflectionHelpers.setField(adapter, "mFgHandler", handler);
    ReflectionHelpers.setField(adapter, "mFilterMode", -1);
    // app loading not yet completed
    ReflectionHelpers.setField(adapter, "mHasReceivedLoadEntries", false);
    adapter.updateLoading();
    // app loading completed
    ReflectionHelpers.setField(adapter, "mHasReceivedLoadEntries", true);
    final ArrayList<ApplicationsState.AppEntry> appList = new ArrayList<>();
    appList.add(mock(ApplicationsState.AppEntry.class));
    when(mSession.getAllApps()).thenReturn(appList);
    adapter.onRebuildComplete(null);
    verify(loadingViewController).showContent(true);
}
Also used : Context(android.content.Context) ArrayList(java.util.ArrayList) Activity(android.app.Activity) Handler(android.os.Handler) LoadingViewController(com.android.settings.widget.LoadingViewController) View(android.view.View) TextView(android.widget.TextView) Test(org.junit.Test)

Aggregations

LoadingViewController (com.android.settings.widget.LoadingViewController)40 View (android.view.View)32 Test (org.junit.Test)26 Activity (android.app.Activity)18 Handler (android.os.Handler)18 TextView (android.widget.TextView)18 ArrayList (java.util.ArrayList)16 Bundle (android.os.Bundle)13 Context (android.content.Context)8 OnItemSelectedListener (android.widget.AdapterView.OnItemSelectedListener)7 SpinnerInterface (com.android.settings.datausage.CycleAdapter.SpinnerInterface)7 SearchView (android.widget.SearchView)6 RecyclerView (androidx.recyclerview.widget.RecyclerView)6 Spinner (android.widget.Spinner)2 SubSettingLauncher (com.android.settings.core.SubSettingLauncher)2 AppEntry (com.android.settingslib.applications.ApplicationsState.AppEntry)2 AccessibilityDelegate (android.view.View.AccessibilityDelegate)1 AdapterView (android.widget.AdapterView)1 ImageView (android.widget.ImageView)1