All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.droidparts.inner.delegate.BaseDelegate Maven / Gradle / Ivy

There is a newer version: 3.2.5
Show newest version
/**
 * Copyright 2017 Alex Yanchenko
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License. 
 */
package org.droidparts.inner.delegate;

import android.app.Activity;
import android.app.Dialog;
import android.content.Context;
import android.content.res.Configuration;
import android.os.Build;
import android.os.Bundle;
import android.view.Gravity;
import android.view.View;
import android.widget.FrameLayout;
import android.widget.FrameLayout.LayoutParams;
import android.widget.ProgressBar;

import org.droidparts.Injector;
import org.droidparts.bus.EventBus;
import org.droidparts.inner.InstanceStateSaver;

import static org.droidparts.util.ResourceUtils.dpToPx;

public class BaseDelegate {

	public static View activityBuildLoadingIndicator(Context ctx) {
		boolean large = (ctx.getResources().getConfiguration().screenLayout
				& Configuration.SCREENLAYOUT_SIZE_MASK) > Configuration.SCREENLAYOUT_SIZE_NORMAL;
		boolean fresh = Build.VERSION.SDK_INT > Build.VERSION_CODES.GINGERBREAD_MR1;
		int px = (large && fresh) ? 64 : 56;
		FrameLayout fl = new FrameLayout(ctx);
		fl.setMinimumWidth(dpToPx(ctx, px));
		ProgressBar pb = new ProgressBar(ctx);
		px = dpToPx(ctx, 32);
		fl.addView(pb, new LayoutParams(px, px, Gravity.CENTER));
		return fl;
	}

	protected static final int CONTENT_VIEW_ID = 140584;

	public static void singleFragmentActivitySetContentView(Activity activity) {
		FrameLayout fl = new FrameLayout(activity);
		fl.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
		fl.setId(CONTENT_VIEW_ID);
		activity.setContentView(fl);
	}

	//

	public static void onActivityCreate(Activity activity, Bundle savedInstanceState) {
		Injector.inject(activity);
		InstanceStateSaver.onCreate(activity, savedInstanceState);
	}

	public static void onResume(Object obj) {
		EventBus.registerAnnotatedReceiver(obj);
	}

	public static void onPause(Object obj) {
		EventBus.unregisterAnnotatedReceiver(obj);
	}

	public static void onActivitySaveInstanceState(Activity activity, Bundle outState) {
		InstanceStateSaver.onSaveInstanceState(activity, outState);
	}

	//

	public static void onFragmentCreateView(Object obj, View view, Dialog dialog, Bundle savedInstanceState) {
		if (view != null) {
			Injector.inject(view, obj);
		} else if (dialog != null) {
			Injector.inject(dialog, obj);
		} else {
			throw new IllegalArgumentException("Null View.");
		}
		InstanceStateSaver.onCreate(obj, savedInstanceState);
		EventBus.registerAnnotatedReceiver(obj);
	}

	public static void onFragmentSaveInstanceState(Object obj, boolean injected, Bundle outState) {
		if (injected) {
			EventBus.unregisterAnnotatedReceiver(obj);
			InstanceStateSaver.onSaveInstanceState(obj, outState);
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy