aboutsummaryrefslogtreecommitdiffstats
path: root/samples/gradle-sample/ExampleApplication/app/src/main/java/com/example/adnan/myapplication/MainActivity.java
blob: c7ab172bfeefe24276291a29fddecce4b5d9e332 (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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
package com.example.test.myapplication;

import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.net.wifi.WifiConfiguration;
import android.net.wifi.WifiManager;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.RemoteViews;
import android.widget.Toast;

import java.util.ArrayList;
import java.util.List;

import cyanogenmod.app.CMStatusBarManager;
import cyanogenmod.app.CustomTile;
import cyanogenmod.app.Profile;
import cyanogenmod.app.ProfileManager;
import cyanogenmod.profiles.ConnectionSettings;

public class MainActivity extends AppCompatActivity implements View.OnClickListener {

    private CMStatusBarManager mCMStatusBarManager;
    private Button mPublishRemoteViewButton;

    private ProfileManager mProfileMangager;
    private WifiManager mWifiManager;
    private Profile mProfile;
    private List<WifiTrigger> mTriggers = new ArrayList<WifiTrigger>();
    private Button mProfileButton;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // CUSTOM TILES
        mCMStatusBarManager = CMStatusBarManager.getInstance(this);
        mPublishRemoteViewButton = (Button) findViewById(R.id.publish_remote_view_tile);
        mPublishRemoteViewButton.setOnClickListener(this);


        // PROFILES
        mProfileButton = (Button) findViewById(R.id.publish_ap_triggered_profile);
        mProfileButton.setOnClickListener(this);
        mProfileManager = ProfileManager.getInstance(this);
        mWifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
        populateWifiTriggerList();
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
            case R.id.publish_remote_view_tile:
                Intent intent = new Intent(Intent.ACTION_DIAL);
                intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                intent.setData(Uri.parse("tel:2813308004"));

                PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);

                RemoteViews remoteViews = new RemoteViews(getPackageName(), R.layout.tile_remote_view);
                remoteViews.setOnClickPendingIntent(R.id.remote_view_button, pendingIntent);

                CustomTile.RemoteExpandedStyle remoteExpandedStyle = new CustomTile.RemoteExpandedStyle();
                remoteExpandedStyle.setRemoteViews(remoteViews);

                Intent deleteIntent = new Intent();
                deleteIntent.setAction(DeleteIntentReceiver.DELETE_ACTION);

                CustomTile customTile = new CustomTile.Builder(this)
                        .setDeleteIntent(PendingIntent.getBroadcast(this, 0, deleteIntent, 0))
                        .setLabel("Remote Tile")
                        .setIcon(R.mipmap.ic_launcher)
                        .setContentDescription("Remote Expanded Style Tile")
                        .setExpandedStyle(remoteExpandedStyle)
                        .build();

                mCMStatusBarManager.publishTile(1337, customTile);
                break;
            case R.id.publish_ap_triggered_profile:
                mProfile = new Profile("Enable Bluetooth on WiFi connect");
                mProfile.setProfileType(Profile.Type.TOGGLE);

                final String triggerId;
                final String triggerName;
                final int triggerType;
                final int triggerState;

                WifiTrigger trigger = mTriggers.get(0);  // get first AP, doesn't matter what it is

                // Populate the arguments for the ProfileTrigger
                triggerId = trigger.getSSID();
                triggerName = trigger.getTitle();
                triggerType = Profile.TriggerType.WIFI;         // This is a wifi trigger
                triggerState = Profile.TriggerState.ON_CONNECT; // On Connect of this, trigger

                Profile.ProfileTrigger profileTrigger =
                        new Profile.ProfileTrigger(triggerType, triggerId, triggerState, triggerName);

                ConnectionSettings connectionSettings = new ConnectionSettings(
                        ConnectionSettings.PROFILE_CONNECTION_BLUETOOTH,
                        ConnectionSettings.BooleanState.STATE_ENABLED, true);

                mProfile.setConnectionSettings(connectionSettings);
                mProfile.setTrigger(profileTrigger);

                mProfileManager.addProfile(mProfile);
                mProfileManager.setActiveProfile(mProfile.getUuid());

                Toast.makeText(this, "Set up for AP " + triggerId + "\n" +
                        "With state pending on " + triggerState, Toast.LENGTH_SHORT).show();
                break;
        }
    }

    private void populateWifiTriggerList() {
        final List<WifiConfiguration> configs = mWifiManager.getConfiguredNetworks();

        if (configs != null) {
            for (WifiConfiguration config : configs) {
                WifiTrigger wifiTrigger = new WifiTrigger(config);
                mTriggers.add(wifiTrigger);
            }
        }
    }

    public static class WifiTrigger {
        public String mSSID;
        public WifiConfiguration mConfig;

        public WifiTrigger(WifiConfiguration config) {
            mConfig = config;
            loadConfig(config);
        }

        public String getSSID() {
            return mSSID;
        }

        public String getTitle() {
            return mSSID;
        }

        private void loadConfig(WifiConfiguration config) {
            mSSID = (config.SSID == null ? "" : removeDoubleQuotes(config.SSID));
            mConfig = config;
        }

        public static String removeDoubleQuotes(String string) {
            final int length = string.length();
            if (length >= 2) {
                if (string.startsWith("\"") && string.endsWith("\"")) {
                    return string.substring(1, length - 1);
                }
            }
            return string;
        }
    }
}