summaryrefslogtreecommitdiffstats
path: root/src/org/cyanogenmod/theme/chooser/ChooserActivity.java
blob: f2ebad0f241faebce3f11e229251524d0dd24083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
 * Copyright (C) 2014 The CyanogenMod Project
 *
 * 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.cyanogenmod.theme.chooser;

import java.util.ArrayList;
import java.util.Arrays;

import android.app.ActionBar;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.view.MenuItem;

public class ChooserActivity extends FragmentActivity {
    public static final String TAG = ChooserActivity.class.getName();
    public static final String EXTRA_COMPONENT_FILTER = "component_filter";
    public static final String EXTRA_PKGNAME = "pkgName";

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        NotificationHijackingService.ensureEnabled(this);

        ActionBar mActionBar = getActionBar();
        if (mActionBar != null) {
            mActionBar.setDisplayHomeAsUpEnabled(true);
        }

        if (savedInstanceState == null) {
            handleIntent(getIntent());
        }
    }

    @Override
    protected void onNewIntent(Intent intent) {
        super.onNewIntent(intent);
        handleIntent(intent);
    }

    private void handleIntent(final Intent intent) {
        //Determine if there we need to filter by component (ex icon sets only)
        Bundle extras = intent.getExtras();
        String filter = (extras == null) ? null : extras.getString(EXTRA_COMPONENT_FILTER);

        // If activity started by wallpaper chooser then filter on wallpapers
        if (Intent.ACTION_SET_WALLPAPER.equals(intent.getAction())) {
            filter = "mods_homescreen";
        }

        // Support filters passed in as csv. Since XML prefs do not support
        // passing extras in as arrays.
        ArrayList<String> filtersList = new ArrayList<String>();
        if (filter != null) {
            String[] filters = filter.split(",");
            filtersList.addAll(Arrays.asList(filters));
        }

        Fragment fragment = null;
        if (Intent.ACTION_MAIN.equals(intent.getAction()) && intent.hasExtra(EXTRA_PKGNAME)) {
            String pkgName = intent.getStringExtra(EXTRA_PKGNAME);
            fragment = ChooserDetailFragment.newInstance(pkgName, null);
            // Handle case where Theme Store or some other app wishes to open
            // a detailed theme view for a given package
            try {
                final PackageManager pm = getPackageManager();
                if (pm.getPackageInfo(pkgName, 0) == null) {
                    fragment = ChooserBrowseFragment.newInstance(filtersList);
                }
            } catch (PackageManager.NameNotFoundException e) {
                fragment = ChooserBrowseFragment.newInstance(filtersList);
            }
        } else {
            fragment = ChooserBrowseFragment.newInstance(filtersList);
        }
        getSupportFragmentManager().beginTransaction().replace(R.id.content, fragment,
                "ChooserBrowseFragment").commit();
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        if (item.getItemId() == android.R.id.home) {
            finish();
            return true;
        }
        return false;
    }
}