android.content.pm.InstrumentationInfo#android.content.pm.ActivityInfo源码实例Demo

下面列出了android.content.pm.InstrumentationInfo#android.content.pm.ActivityInfo 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: MxVideoPlayer   文件: MxVideoPlayer.java
@Override
public void autoFullscreen(float x) {
    Log.i(TAG, "autoFullscreen: [" + this.hashCode() + "] ");
    if (isCurrentMediaListener()
            && mCurrentState == CURRENT_STATE_PLAYING
            && mCurrentScreen != SCREEN_WINDOW_FULLSCREEN
            && mCurrentScreen != SCREEN_WINDOW_TINY) {
        if (x > 0) {
            MxUtils.getAppComptActivity(getContext()).setRequestedOrientation(
                    ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
        } else {
            MxUtils.getAppComptActivity(getContext()).setRequestedOrientation(
                    ActivityInfo.SCREEN_ORIENTATION_REVERSE_LANDSCAPE);
        }
        startWindowFullscreen();
    }
}
 
源代码2 项目: CSipSimple   文件: Theme.java
public static HashMap<String, String> getAvailableThemes(Context ctxt){
	HashMap<String, String> result = new HashMap<String, String>();
	result.put("", ctxt.getResources().getString(R.string.app_name));
	
	PackageManager packageManager = ctxt.getPackageManager();
	Intent it = new Intent(SipManager.ACTION_GET_DRAWABLES);
	
	List<ResolveInfo> availables = packageManager.queryBroadcastReceivers(it, 0);
	Log.d(THIS_FILE, "We found " + availables.size() + "themes");
	for(ResolveInfo resInfo : availables) {
		Log.d(THIS_FILE, "We have -- "+resInfo);
		ActivityInfo actInfos = resInfo.activityInfo;
		ComponentName cmp = new ComponentName(actInfos.packageName, actInfos.name);
		String label = (String) actInfos.loadLabel(packageManager);
		if(TextUtils.isEmpty(label)) {
		    label = (String) resInfo.loadLabel(packageManager);
		}
		result.put(cmp.flattenToString(), label);
	}
	
	return result;
}
 
源代码3 项目: media-samples   文件: MainActivityTest.java
@Test
public void fullscreen_disabledOnPortrait() throws Throwable {
    rule.runOnUiThread(new Runnable() {
        @Override
        public void run() {
            rule.getActivity()
                    .setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
        }
    });
    InstrumentationRegistry.getInstrumentation().waitForIdleSync();
    rule.runOnUiThread(new Runnable() {
        @Override
        public void run() {
            final View decorView = rule.getActivity().getWindow().getDecorView();
            assertThat(decorView.getSystemUiVisibility(),
                    not(hasFlag(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN)));
        }
    });
}
 
源代码4 项目: ExoPlayer-Wrapper   文件: RecyclerViewAdapter.java
public void changeToNormalScreen() {
    ((Activity) mTextView.getContext()).setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

    mLayouManager.enableScroll();

    RecyclerView.LayoutParams layoutParamsItem = (RecyclerView.LayoutParams) mView.getLayoutParams();
    layoutParamsItem.height = mItemHeight;
    layoutParamsItem.width = mItemWidth;
    layoutParamsItem.topMargin = mItemTopMargin;
    layoutParamsItem.bottomMargin = mItemBottomMargin;
    layoutParamsItem.leftMargin = mItemLeftMargin;
    layoutParamsItem.rightMargin = mItemRightMargin;
    mView.setLayoutParams(layoutParamsItem);

    ConstraintLayout.LayoutParams videoParams = (ConstraintLayout.LayoutParams) mExoPlayerView.getLayoutParams();
    videoParams.height = mVideoHeight;
    videoParams.width = mVideoWidth;
    //videoParams.bottomToBottom = 0;
    mExoPlayerView.setLayoutParams(videoParams);

    mTextView.setVisibility(View.VISIBLE);
}
 
源代码5 项目: moviedb-android   文件: GalleryPreviewDetail.java
@Override
public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);
    if (activity.getSupportActionBar() != null && activity.getSupportActionBar().isShowing())
        activity.getSupportActionBar().hide();

    if (Build.VERSION.SDK_INT >= 19) {
        mUIFlag ^= View.SYSTEM_UI_FLAG_IMMERSIVE;
    }

    if (this.isVisible()) {
        // Check orientation and lock to portrait if we are on phone
        if (getResources().getBoolean(R.bool.portrait_only)) {
            activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
        }
    }
    imageLoader.displayImage(currImg, mImageView, options, imageLoadingListener);
}
 
源代码6 项目: FlowGeek   文件: BaseActivity.java
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // 主题选择
    SharedPreferences preferences = SharePreferenceManager.getApplicationSetting(this);

    int theme = preferences.getInt(ApplicationSetting.KEY_THEME, ApplicationTheme.LIGHT.getKey());

    if (theme == ApplicationTheme.LIGHT.getKey()){
        setTheme(ApplicationTheme.LIGHT.getResId());
    }else if(theme == ApplicationTheme.DARK.getKey()){
        setTheme(ApplicationTheme.DARK.getResId());
    }

    // 方向锁定
    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}
 
源代码7 项目: Neptune   文件: InstrActivityProxy1.java
@Override
public void setTheme(int resId) {
    if (VersionUtils.hasNougat()) {
        String[] temp = parsePkgAndClsFromIntent();
        if (mNeedUpdateConfiguration && (temp != null || mLoadedApk != null)) {
            if (null != temp && temp.length == 2) {
                tryToInitPluginLoadApk(temp[0]);
            }
            if (mLoadedApk != null && temp != null) {
                ActivityInfo actInfo = mLoadedApk.getActivityInfoByClassName(temp[1]);
                if (actInfo != null) {
                    int resTheme = actInfo.getThemeResource();
                    if (mNeedUpdateConfiguration) {
                        changeActivityInfo(InstrActivityProxy1.this, temp[0], actInfo);
                        super.setTheme(resTheme);
                        mNeedUpdateConfiguration = false;
                        return;
                    }
                }
            }
        }
        super.setTheme(resId);
    } else {
        getTheme().applyStyle(resId, true);
    }
}
 
源代码8 项目: science-journal   文件: NoteTakingActivity.java
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  permissions = new RxPermissions(this);
  setContentView(R.layout.activity_experiment_layout);

  Resources resources = getResources();
  boolean isTablet = resources.getBoolean(R.bool.is_tablet);
  if (!isTablet) {
    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
  }
  boolean isLandscape =
      resources.getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE;
  isTwoPane = isTablet && isLandscape;

  appAccount = WhistlePunkApplication.getAccount(this, getIntent(), EXTRA_ACCOUNT_KEY);
  experimentId = getIntent().getStringExtra(EXTRA_EXPERIMENT_ID);
  exp = whenSelectedExperiment(experimentId, getDataController());

  AppSingleton.getInstance(this)
      .whenLabelsAdded(appAccount)
      .takeUntil(destroyed.happens())
      .subscribe(event -> onLabelAdded(event.getTrialId(), event.getLabel()));
}
 
源代码9 项目: DroidPlugin   文件: RunningProcessList.java
boolean isStubInfoUsed(ActivityInfo stubInfo, ActivityInfo targetInfo, String stubProcessName) {
    for (Integer pid : items.keySet()) {
        ProcessItem item = items.get(pid);
        if (TextUtils.equals(item.stubProcessName, stubProcessName)) {
            Set<ActivityInfo> infos = item.activityInfosMap.get(stubInfo.name);
            if (infos != null && infos.size() > 0) {
                for (ActivityInfo info : infos) {
                    if (TextUtils.equals(info.name, targetInfo.name) && TextUtils.equals(info.packageName, targetInfo.packageName)) {
                        return false;
                    }
                }
                return true;
            }
            return false;
        }
    }
    return false;
}
 
源代码10 项目: Ency   文件: EyepetizerDetailActivity.java
private void initVideoPlayer() {
    LinkedHashMap map = new LinkedHashMap();
    if (videoBean.getContent().getData().getPlayInfo().size() == 3) {
        map.put("流畅", videoBean.getContent().getData().getPlayInfo().get(0).getUrl());
        map.put("标清", videoBean.getContent().getData().getPlayInfo().get(1).getUrl());
        map.put("高清", videoBean.getContent().getData().getPlayInfo().get(2).getUrl());
    } else if (videoBean.getContent().getData().getPlayInfo().size() == 2) {
        map.put("标清", videoBean.getContent().getData().getPlayInfo().get(0).getUrl());
        map.put("高清", videoBean.getContent().getData().getPlayInfo().get(1).getUrl());
    } else if (videoBean.getContent().getData().getPlayInfo().size() == 1) {
        map.put("高清", videoBean.getContent().getData().getPlayInfo().get(0).getUrl());
    }
    Object[] objects = new Object[3];
    objects[0] = map;
    objects[1] = false;//looping
    objects[2] = new HashMap<>();
    videoPlayerStandard.backButton.setVisibility(View.VISIBLE);
    videoPlayerStandard.titleTextView.setTextSize(16);
    videoPlayerStandard.setUp(objects, 0,
            JZVideoPlayerStandard.SCREEN_WINDOW_NORMAL, videoBean.getContent().getData().getTitle());
    ImageLoader.loadAllNoPlaceHolder(mContext, videoBean.getContent().getData().getCover().getFeed()
            ,videoPlayerStandard.thumbImageView);
    JZVideoPlayer.FULLSCREEN_ORIENTATION = ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE;
    JZVideoPlayer.NORMAL_ORIENTATION = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT;
}
 
源代码11 项目: DroidPlugin   文件: RunningProcessList.java
private void addActivityInfo(String stubActivityName, ActivityInfo info) {
    if (!targetActivityInfos.containsKey(info.name)) {
        targetActivityInfos.put(info.name, info);
    }

    //pkgs
    if (!pkgs.contains(info.packageName)) {
        pkgs.add(info.packageName);
    }

    //stub map to activity info
    Set<ActivityInfo> list = activityInfosMap.get(stubActivityName);
    if (list == null) {
        list = new TreeSet<ActivityInfo>(sComponentInfoComparator);
        list.add(info);
        activityInfosMap.put(stubActivityName, list);
    } else {
        list.add(info);
    }
}
 
源代码12 项目: CSipSimple   文件: SuggestionsAdapter.java
/**
 * Gets the activity or application icon for an activity.
 *
 * @param component Name of an activity.
 * @return A drawable, or {@code null} if neither the acitivy or the application
 *         have an icon set.
 */
private Drawable getActivityIcon(ComponentName component) {
    PackageManager pm = mContext.getPackageManager();
    final ActivityInfo activityInfo;
    try {
        activityInfo = pm.getActivityInfo(component, PackageManager.GET_META_DATA);
    } catch (NameNotFoundException ex) {
        Log.w(LOG_TAG, ex.toString());
        return null;
    }
    int iconId = activityInfo.getIconResource();
    if (iconId == 0) return null;
    String pkg = component.getPackageName();
    Drawable drawable = pm.getDrawable(pkg, iconId, activityInfo.applicationInfo);
    if (drawable == null) {
        Log.w(LOG_TAG, "Invalid icon resource " + iconId + " for "
                + component.flattenToShortString());
        return null;
    }
    return drawable;
}
 
源代码13 项目: HeroVideo-master   文件: MediaPlayer.java
@Override
public void onClick(View v) {
    if (v.getId() == R.id.app_video_fullscreen) {
        toggleFullScreen();
    } else if (v.getId() == R.id.app_video_play) {
        doPauseResume();
        show(defaultTimeout);
    }else if (v.getId() == R.id.app_video_replay_icon) {
        videoView.seekTo(0);
        videoView.start();
        doPauseResume();
    } else if (v.getId() == R.id.app_video_finish) {
        if (!fullScreenOnly && !portrait) {
            activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
        } else {
            activity.finish();
        }
    }
}
 
源代码14 项目: android_9.0.0_r45   文件: PreferredComponent.java
/** Returns components from mSetPackages that are present in query. */
public ComponentName[] discardObsoleteComponents(List<ResolveInfo> query) {
    if (mSetPackages == null || query == null) {
        return new ComponentName[0];
    }
    final int NQ = query.size();
    final int NS = mSetPackages.length;
    ArrayList<ComponentName> aliveComponents = new ArrayList<>();
    for (int i = 0; i < NQ; i++) {
        ResolveInfo ri = query.get(i);
        ActivityInfo ai = ri.activityInfo;
        for (int j = 0; j < NS; j++) {
            if (mSetPackages[j].equals(ai.packageName) && mSetClasses[j].equals(ai.name)) {
                aliveComponents.add(new ComponentName(mSetPackages[j], mSetClasses[j]));
                break;
            }
        }
    }
    return aliveComponents.toArray(new ComponentName[aliveComponents.size()]);
}
 
源代码15 项目: zhangshangwuda   文件: SuggestionsAdapter.java
/**
 * Gets the activity or application icon for an activity.
 *
 * @param component Name of an activity.
 * @return A drawable, or {@code null} if neither the acitivy or the application
 *         have an icon set.
 */
private Drawable getActivityIcon(ComponentName component) {
    PackageManager pm = mContext.getPackageManager();
    final ActivityInfo activityInfo;
    try {
        activityInfo = pm.getActivityInfo(component, PackageManager.GET_META_DATA);
    } catch (NameNotFoundException ex) {
        Log.w(LOG_TAG, ex.toString());
        return null;
    }
    int iconId = activityInfo.getIconResource();
    if (iconId == 0) return null;
    String pkg = component.getPackageName();
    Drawable drawable = pm.getDrawable(pkg, iconId, activityInfo.applicationInfo);
    if (drawable == null) {
        Log.w(LOG_TAG, "Invalid icon resource " + iconId + " for "
                + component.flattenToShortString());
        return null;
    }
    return drawable;
}
 
源代码16 项目: GiraffePlayer2   文件: PlayerActivity.java
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.giraffe_player_activity);
    Intent intent = getIntent();
    if (intent == null) {
        finish();
        return;
    }
    VideoInfo videoInfo = intent.getParcelableExtra("__video_info__");
    if (videoInfo == null) {
        finish();
        return;
    }
    if(videoInfo.isFullScreenOnly()){
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR_LANDSCAPE);
    }
    PlayerManager.getInstance().releaseByFingerprint(videoInfo.getFingerprint());
    VideoView videoView = findViewById(R.id.video_view);
    videoView.videoInfo(videoInfo);
    PlayerManager.getInstance().getPlayer(videoView).start();
}
 
源代码17 项目: braintree_android   文件: ManifestValidator.java
@Nullable
public static ActivityInfo getActivityInfo(Context context, Class klass) {
    try {
        PackageInfo packageInfo =
                context.getPackageManager().getPackageInfo(context.getPackageName(), PackageManager.GET_ACTIVITIES);
        ActivityInfo[] activities = packageInfo.activities;
        if (activities != null) {
            for (ActivityInfo activityInfo : activities) {
                if (activityInfo.name.equals(klass.getName())) {
                    return activityInfo;
                }
            }
        }
    } catch (NameNotFoundException ignored) {}

    return null;
}
 
源代码18 项目: FastLib   文件: ActivityControlImpl.java
/**
 * 设置屏幕方向--注意targetSDK设置27以上不能设置windowIsTranslucent=true属性不然应用直接崩溃-强烈建议手机应用锁定竖屏
 * 错误为 Only fullscreen activities can request orientation
 * 默认自动 ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED
 * 竖屏 ActivityInfo.SCREEN_ORIENTATION_PORTRAIT;
 * 横屏 ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE;
 * {@link ActivityInfo#screenOrientation ActivityInfo.screenOrientation}
 *
 * @param activity
 */
public void setActivityOrientation(Activity activity) {
    //全局控制屏幕横竖屏
    //先判断xml没有设置屏幕模式避免将开发者本身想设置的覆盖掉
    if (activity.getRequestedOrientation() == ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED) {
        try {
            activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
        } catch (Exception e) {
            e.printStackTrace();
            LoggerManager.e(TAG, "setRequestedOrientation:" + e.getMessage());
        }
    }
}
 
源代码19 项目: container   文件: VActivityManagerService.java
private void handleStaticBroadcastAsUser(int vuid, ActivityInfo info, Intent intent,
                                         PendingResultData result) {
    synchronized (this) {
        ProcessRecord r = findProcessLocked(info.processName, vuid);
        if (BROADCAST_NOT_STARTED_PKG && r == null) {
            r = startProcessIfNeedLocked(info.processName, getUserId(vuid), info.packageName);
        }
        if (r != null && r.appThread != null) {
            performScheduleReceiver(r.client, vuid, info, intent,
                    result);
        }
    }
}
 
源代码20 项目: Phantom   文件: PluginContext.java
/**
 * 将宿主Activity的一些变量值赋值给插件Activity,使插件Activity与宿主占位Activity具有相同的状态
 */
private void attachStatus(PluginInterceptActivity pluginActivity) throws IllegalAccessException {
    for (Field field : ACTIVITY_FIELDS) {
        int modifiers = field.getModifiers();
        if (Modifier.isStatic(modifiers)
                || Modifier.isFinal(modifiers)
                || Modifier.isVolatile(modifiers)
                || Modifier.isTransient(modifiers)) {
            continue;
        }

        field.setAccessible(true);
        Object fieldsValue = field.get(mBaseContext);
        field.set(pluginActivity, fieldsValue);
    }

    pluginActivity.attachBaseContext(mBaseContext);

    //设置输入法模式
    if (!mTargetClass.getName().equals(PluginInterceptActivity.class.getName())) {
        ActivityInfo info = mPluginInfo.getActivityInfo(
                new ComponentName(mPluginInfo.packageName, mTargetClass.getName()));
        if (null != info && info.softInputMode != WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED) {
            mBaseContext.getWindow().setSoftInputMode(info.softInputMode);
        }
    }
}
 
源代码21 项目: Roid-Library   文件: RLSysUtil.java
/**
 * @param context
 * @param receiverClass
 * @param key
 * @return
 */
public static String getReceiverMetaData(Context context, Class<?> receiverClass, String key) {
    String data = null;
    ActivityInfo info = null;
    try {
        info = context.getPackageManager().getReceiverInfo(new ComponentName(context, receiverClass),
                PackageManager.GET_META_DATA);
    } catch (NameNotFoundException e) {
        e.printStackTrace();
    }
    if (info != null && info.metaData != null && info.metaData.get(key) != null) {
        data = info.metaData.get(key).toString();
    }
    return data;
}
 
源代码22 项目: 365browser   文件: VrShellDelegate.java
private void enterVrWithCorrectWindowMode(final boolean tentativeWebVrMode) {
    if (mInVr) return;
    if (mNativeVrShellDelegate == 0) {
        cancelPendingVrEntry();
        return;
    }
    if (!createVrShell()) {
        maybeSetPresentResult(false);
        mVrDaydreamApi.launchVrHomescreen();
        cancelPendingVrEntry();
        return;
    }
    mVrClassesWrapper.setVrModeEnabled(mActivity, true);
    mInVr = true;
    // Lock orientation to landscape after enter VR.
    mActivity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

    addVrViews();
    boolean webVrMode = mRequestedWebVr || tentativeWebVrMode;
    mVrShell.initializeNative(
            mActivity.getActivityTab(), webVrMode, mActivity instanceof CustomTabActivity);
    mVrShell.setWebVrModeEnabled(webVrMode);

    // We're entering VR, but not in WebVr mode.
    mVrBrowserUsed = !webVrMode;

    // onResume needs to be called on GvrLayout after initialization to make sure DON flow works
    // properly.
    if (!mPaused) mVrShell.resume();

    maybeSetPresentResult(true);
    mVrShell.getContainer().setOnSystemUiVisibilityChangeListener(this);
    removeOverlayView();
}
 
源代码23 项目: TrustedIntents   文件: TrustedIntentsTests.java
/**
 * Intent stores this info internally using {@link CompenentName}, so we're
 * using that as the method for setting it. It can also be set using
 * {@link Intent#setClassName(String, String) setClassName()}, and it is
 * then translated to a {@link ComponentName}.
 *
 * @param packageName
 * @return
 */
private Intent getLauncherIntent(String packageName) {
    Intent i = new Intent(Intent.ACTION_MAIN);
    i.setPackage(packageName);
    i.addCategory(Intent.CATEGORY_LAUNCHER);
    ResolveInfo resolveInfo = pm.resolveActivity(i, PackageManager.MATCH_DEFAULT_ONLY);
    if (TextUtils.isEmpty(packageName) || resolveInfo == null)
        return i;
    ActivityInfo activityInfo = resolveInfo.activityInfo;
    assertEquals(activityInfo.packageName, packageName);
    return new Intent(Intent.ACTION_MAIN)
            .setComponent(new ComponentName(packageName, activityInfo.name));
}
 
源代码24 项目: imsdk-android   文件: VideoPlayActivity.java
@Override
    public void onConfigurationChanged(Configuration newConfig) {
        if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
            setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);  //设置横屏
//            Toast.makeText(VideoPlayActivity.this,"当前屏幕为横屏",Toast.LENGTH_SHORT).show();
        } else {
//            Toast.makeText(VideoPlayActivity.this, "当前屏幕为竖屏", Toast.LENGTH_SHORT).show();
            setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);//设置竖屏

        }
        super.onConfigurationChanged(newConfig);

    }
 
源代码25 项目: container   文件: VActivityManagerService.java
private boolean handleUserBroadcast(int vuid, ActivityInfo info, ComponentName component, Intent realIntent, PendingResultData result) {
    if (component != null && !ComponentUtils.toComponentName(info).equals(component)) {
        // Verify the component.
        return false;
    }
    String originAction = SpecialComponentList.unprotectAction(realIntent.getAction());
    if (originAction != null) {
        // restore to origin action.
        realIntent.setAction(originAction);
    }
    handleStaticBroadcastAsUser(vuid, info, realIntent, result);
    return true;
}
 
源代码26 项目: DKVideoPlayer   文件: BaseVideoController.java
/**
 * 竖屏
 */
protected void onOrientationPortrait(Activity activity) {
    //屏幕锁定的情况
    if (mIsLocked) return;
    //没有开启设备方向监听的情况
    if (!mEnableOrientation) return;

    activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
    mControlWrapper.stopFullScreen();
}
 
源代码27 项目: YiBo   文件: InitAppTask.java
@Override
protected void onPostExecute(Void result) {
	super.onPostExecute(result);

	context.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
	if (shejiaomao.isAutoScreenOrientation()) {
           context.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_USER);
	} else {
		context.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
	}

	context.updateContentView(null);

	if (!NetUtil.isConnect(context)) {
		showNetSettingsDialog();
	}

	if (GlobalVars.IS_MOBILE_NET_UPDATE_VERSION) {
		UmengUpdateAgent.setUpdateOnlyWifi(false);
	}
	if (shejiaomao.isCheckNewVersionOnStartup()) {
		//检查更新
		UmengUpdateAgent.update(context);
	}

	//清除缓存
	StatusesCleanTask statusCleanTask = new StatusesCleanTask(context);
	statusCleanTask.execute();
	ImageCacheQuickCleanTask imageCacheTask = new ImageCacheQuickCleanTask(context);
	imageCacheTask.execute();
}
 
源代码28 项目: Viewer   文件: PlayRtspVideoView.java
@Override
protected void onResume()
{
	super.onResume();
	setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
	if (isPlaying)
	{
		if(null != aThread){
			aThread.resumeAudioPlayback();
		}
		media.resumeStream(vodStreamId);
	}
}
 
源代码29 项目: springreplugin   文件: PmHostSvc.java
@Override
public List<ActivityInfo> queryPluginsReceiverList(Intent intent) {
    List<ActivityInfo> infos = new ArrayList<>();

    if (intent == null) {
        return infos;
    }

    String action = intent.getAction();
    if (TextUtils.isEmpty(action)) {
        return infos;
    }

    Map<String, List<String>> pluginReceiverMap = mActionPluginComponents.get(action);
    if (pluginReceiverMap.isEmpty()) {
        return infos;
    }

    // 根据 action 找到插件的 Receivers
    for (Map.Entry<String, List<String>> entry : pluginReceiverMap.entrySet()) {
        String plugin = entry.getKey();

        // 根据插件名称,找到所有 Receiver
        ComponentList list = mPluginMgr.mLocal.queryPluginComponentList(plugin);
        if (list != null) {

            Map<String, ActivityInfo> receiversMap = list.getReceiverMap();
            if (receiversMap != null) {
                infos.addAll(receiversMap.values());
            }
        }
    }
    return infos;
}
 
源代码30 项目: motion   文件: ParallaxActivity.java
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
    super.onCreateOptionsMenu(menu, inflater);
    inflater.inflate(R.menu.parallax, menu);

    // Add parallax toggle
    final Switch mParallaxToggle = new Switch(getActivity());
    mParallaxToggle.setPadding(0, 0, (int)TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 12, getResources().getDisplayMetrics()), 0);
    mParallaxToggle.setChecked(mParallaxSet);
    mParallaxToggle.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
        @Override
        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
            if (isChecked) {
                mBackground.registerSensorManager();
            } else {
                mBackground.unregisterSensorManager();
            }

            mParallaxSet = isChecked;
        }
    });
    MenuItem switchItem = menu.findItem(R.id.action_parallax);
    if (switchItem != null)
        switchItem.setActionView(mParallaxToggle);

    // Set lock/ unlock orientation text
    if (mPortraitLock) {
        getActivity().setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
        MenuItem orientationItem = menu.findItem(R.id.action_portrait);
        if (orientationItem != null)
            orientationItem.setTitle(R.string.action_unlock_portrait);
    }
}