Loading tests/AndroidManifest-common.xml +16 −2 Original line number Original line Diff line number Diff line Loading @@ -23,7 +23,9 @@ <application android:debuggable="true"> <application android:debuggable="true"> <uses-library android:name="android.test.runner" /> <uses-library android:name="android.test.runner" /> <receiver android:name="com.android.launcher3.testcomponent.AppWidgetNoConfig"> <receiver android:name="com.android.launcher3.testcomponent.AppWidgetNoConfig" android:label="No Config"> <intent-filter> <intent-filter> <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> </intent-filter> </intent-filter> Loading @@ -31,7 +33,9 @@ android:resource="@xml/appwidget_no_config" /> android:resource="@xml/appwidget_no_config" /> </receiver> </receiver> <receiver android:name="com.android.launcher3.testcomponent.AppWidgetWithConfig"> <receiver android:name="com.android.launcher3.testcomponent.AppWidgetWithConfig" android:label="With Config"> <intent-filter> <intent-filter> <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> </intent-filter> </intent-filter> Loading @@ -45,5 +49,15 @@ <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/> <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/> </intent-filter> </intent-filter> </activity> </activity> <activity android:name="com.android.launcher3.testcomponent.RequestPinItemActivity" android:label="Test Pin Item" android:icon="@drawable/test_drawable_pin_item"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> <category android:name="android.intent.category.DEFAULT"/> </intent-filter> </activity> </application> </application> </manifest> </manifest> tests/res/drawable/test_drawable_pin_item.xml 0 → 100644 +38 −0 Original line number Original line Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2017 The Android Open Source 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. --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="48dp" android:height="48dp" android:viewportWidth="48.0" android:viewportHeight="48.0"> <path android:fillColor="#66000000" android:pathData="M0,24a24,24 0 1,0 48,0a24,24 0 1,0 -48,0"/> <path android:fillColor="#FF1B5E20" android:pathData="M2,24a22,22 0 1,0 44,0a22,22 0 1,0 -44,0"/> <group android:translateX="12" android:translateY="12"> <path android:fillColor="#FFFFFFFF" android:pathData="M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12Z"/> </group> </vector> No newline at end of file tests/src/com/android/launcher3/testcomponent/BaseTestingActivity.java 0 → 100644 +126 −0 Original line number Original line Diff line number Diff line /* * Copyright (C) 2017 The Android Open Source 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 com.android.launcher3.testcomponent; import android.app.Activity; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.os.Bundle; import android.util.TypedValue; import android.view.View; import android.widget.Button; import android.widget.LinearLayout; import android.widget.LinearLayout.LayoutParams; import java.lang.reflect.Method; import java.lang.reflect.Modifier; /** * Base activity with utility methods to help automate testing. */ public class BaseTestingActivity extends Activity implements View.OnClickListener { public static final String SUFFIX_COMMAND = "-command"; public static final String EXTRA_METHOD = "method"; public static final String EXTRA_PARAM = "param_"; private static final int MARGIN_DP = 20; private final String mAction = this.getClass().getName(); private LinearLayout mView; private int mMargin; private final BroadcastReceiver mCommandReceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { handleCommand(intent); } }; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mMargin = Math.round(TypedValue.applyDimension( TypedValue.COMPLEX_UNIT_DIP, MARGIN_DP, getResources().getDisplayMetrics())); mView = new LinearLayout(this); mView.setPadding(mMargin, mMargin, mMargin, mMargin); mView.setOrientation(LinearLayout.VERTICAL); setContentView(mView); registerReceiver(mCommandReceiver, new IntentFilter(mAction + SUFFIX_COMMAND)); } protected void addButton(String title, String method) { Button button = new Button(this); button.setText(title); button.setTag(method); button.setOnClickListener(this); LayoutParams lp = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT); lp.bottomMargin = mMargin; mView.addView(button, lp); } @Override protected void onResume() { super.onResume(); sendBroadcast(new Intent(mAction).putExtra(Intent.EXTRA_INTENT, getIntent())); } @Override protected void onDestroy() { unregisterReceiver(mCommandReceiver); super.onDestroy(); } @Override public void onClick(View view) { handleCommand(new Intent().putExtra(EXTRA_METHOD, (String) view.getTag())); } private void handleCommand(Intent cmd) { String methodName = cmd.getStringExtra(EXTRA_METHOD); try { Method method = null; for (Method m : this.getClass().getDeclaredMethods()) { if (methodName.equals(m.getName()) && !Modifier.isStatic(m.getModifiers()) && Modifier.isPublic(m.getModifiers())) { method = m; break; } } Object[] args = new Object[method.getParameterTypes().length]; Bundle extras = cmd.getExtras(); for (int i = 0; i < args.length; i++) { args[i] = extras.get(EXTRA_PARAM + i); } method.invoke(this, args); } catch (Exception e) { throw new RuntimeException(e); } } public static Intent getCommandIntent(Class<?> clazz, String method) { return new Intent(clazz.getName() + SUFFIX_COMMAND) .putExtra(EXTRA_METHOD, method); } } tests/src/com/android/launcher3/testcomponent/RequestPinItemActivity.java 0 → 100644 +89 −0 Original line number Original line Diff line number Diff line /* * Copyright (C) 2017 The Android Open Source 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 com.android.launcher3.testcomponent; import android.annotation.TargetApi; import android.app.PendingIntent; import android.appwidget.AppWidgetManager; import android.content.ComponentName; import android.content.IntentSender; import android.content.pm.ShortcutInfo; import android.content.pm.ShortcutManager; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.drawable.Icon; import android.os.Bundle; /** * Sample activity to request pinning an item. */ @TargetApi(26) public class RequestPinItemActivity extends BaseTestingActivity { private PendingIntent mCallback = null; private String mShortcutId; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addButton("Pin Shortcut", "pinShortcut"); addButton("Pin Widget without config ", "pinWidgetNoConfig"); addButton("Pin Widget with config", "pinWidgetWithConfig"); } public void setCallback(PendingIntent callback) { mCallback = callback; } public void setShortcutId(String id) { mShortcutId = id; } public void pinShortcut() { ShortcutManager sm = getSystemService(ShortcutManager.class); // Generate icon int r = sm.getIconMaxWidth() / 2; Bitmap icon = Bitmap.createBitmap(r * 2, r * 2, Bitmap.Config.ARGB_8888); Paint p = new Paint(); p.setColor(Color.RED); new Canvas(icon).drawCircle(r, r, r, p); ShortcutInfo info = new ShortcutInfo.Builder(this, mShortcutId) .setIntent(getPackageManager().getLaunchIntentForPackage(getPackageName())) .setIcon(Icon.createWithBitmap(icon)) .setShortLabel("Test shortcut") .build(); IntentSender callback = mCallback == null ? null : mCallback.getIntentSender(); sm.requestPinShortcut(info, callback); } public void pinWidgetNoConfig() { requestWidget(new ComponentName(this, AppWidgetNoConfig.class)); } public void pinWidgetWithConfig() { requestWidget(new ComponentName(this, AppWidgetWithConfig.class)); } private void requestWidget(ComponentName cn) { AppWidgetManager.getInstance(this).requestPinAppWidget(cn, mCallback); } } tests/src/com/android/launcher3/testcomponent/WidgetConfigActivity.java +9 −29 Original line number Original line Diff line number Diff line Loading @@ -15,50 +15,30 @@ */ */ package com.android.launcher3.testcomponent; package com.android.launcher3.testcomponent; import android.app.Activity; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.os.Bundle; import android.os.Bundle; /** /** * Simple activity for widget configuration * Simple activity for widget configuration */ */ public class WidgetConfigActivity extends Activity { public class WidgetConfigActivity extends BaseTestingActivity { public static final String SUFFIX_FINISH = "-finish"; public static final String SUFFIX_FINISH = "-finish"; public static final String EXTRA_CODE = "code"; public static final String EXTRA_CODE = "code"; public static final String EXTRA_INTENT = "intent"; private final BroadcastReceiver mFinishReceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { WidgetConfigActivity.this.setResult( intent.getIntExtra(EXTRA_CODE, RESULT_CANCELED), (Intent) intent.getParcelableExtra(EXTRA_INTENT)); WidgetConfigActivity.this.finish(); } }; private final String mAction = this.getClass().getName(); @Override @Override protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); super.onCreate(savedInstanceState); registerReceiver(mFinishReceiver, new IntentFilter(mAction + SUFFIX_FINISH)); addButton("Cancel", "clickCancel"); addButton("OK", "clickOK"); } } @Override public void clickCancel() { protected void onResume() { setResult(RESULT_CANCELED); super.onResume(); finish(); sendBroadcast(new Intent(mAction).putExtra(Intent.EXTRA_INTENT, getIntent())); } } @Override public void clickOK() { protected void onDestroy() { setResult(RESULT_OK); unregisterReceiver(mFinishReceiver); finish(); super.onDestroy(); } } } } Loading
tests/AndroidManifest-common.xml +16 −2 Original line number Original line Diff line number Diff line Loading @@ -23,7 +23,9 @@ <application android:debuggable="true"> <application android:debuggable="true"> <uses-library android:name="android.test.runner" /> <uses-library android:name="android.test.runner" /> <receiver android:name="com.android.launcher3.testcomponent.AppWidgetNoConfig"> <receiver android:name="com.android.launcher3.testcomponent.AppWidgetNoConfig" android:label="No Config"> <intent-filter> <intent-filter> <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> </intent-filter> </intent-filter> Loading @@ -31,7 +33,9 @@ android:resource="@xml/appwidget_no_config" /> android:resource="@xml/appwidget_no_config" /> </receiver> </receiver> <receiver android:name="com.android.launcher3.testcomponent.AppWidgetWithConfig"> <receiver android:name="com.android.launcher3.testcomponent.AppWidgetWithConfig" android:label="With Config"> <intent-filter> <intent-filter> <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> </intent-filter> </intent-filter> Loading @@ -45,5 +49,15 @@ <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/> <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/> </intent-filter> </intent-filter> </activity> </activity> <activity android:name="com.android.launcher3.testcomponent.RequestPinItemActivity" android:label="Test Pin Item" android:icon="@drawable/test_drawable_pin_item"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> <category android:name="android.intent.category.DEFAULT"/> </intent-filter> </activity> </application> </application> </manifest> </manifest>
tests/res/drawable/test_drawable_pin_item.xml 0 → 100644 +38 −0 Original line number Original line Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2017 The Android Open Source 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. --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="48dp" android:height="48dp" android:viewportWidth="48.0" android:viewportHeight="48.0"> <path android:fillColor="#66000000" android:pathData="M0,24a24,24 0 1,0 48,0a24,24 0 1,0 -48,0"/> <path android:fillColor="#FF1B5E20" android:pathData="M2,24a22,22 0 1,0 44,0a22,22 0 1,0 -44,0"/> <group android:translateX="12" android:translateY="12"> <path android:fillColor="#FFFFFFFF" android:pathData="M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12Z"/> </group> </vector> No newline at end of file
tests/src/com/android/launcher3/testcomponent/BaseTestingActivity.java 0 → 100644 +126 −0 Original line number Original line Diff line number Diff line /* * Copyright (C) 2017 The Android Open Source 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 com.android.launcher3.testcomponent; import android.app.Activity; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.os.Bundle; import android.util.TypedValue; import android.view.View; import android.widget.Button; import android.widget.LinearLayout; import android.widget.LinearLayout.LayoutParams; import java.lang.reflect.Method; import java.lang.reflect.Modifier; /** * Base activity with utility methods to help automate testing. */ public class BaseTestingActivity extends Activity implements View.OnClickListener { public static final String SUFFIX_COMMAND = "-command"; public static final String EXTRA_METHOD = "method"; public static final String EXTRA_PARAM = "param_"; private static final int MARGIN_DP = 20; private final String mAction = this.getClass().getName(); private LinearLayout mView; private int mMargin; private final BroadcastReceiver mCommandReceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { handleCommand(intent); } }; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mMargin = Math.round(TypedValue.applyDimension( TypedValue.COMPLEX_UNIT_DIP, MARGIN_DP, getResources().getDisplayMetrics())); mView = new LinearLayout(this); mView.setPadding(mMargin, mMargin, mMargin, mMargin); mView.setOrientation(LinearLayout.VERTICAL); setContentView(mView); registerReceiver(mCommandReceiver, new IntentFilter(mAction + SUFFIX_COMMAND)); } protected void addButton(String title, String method) { Button button = new Button(this); button.setText(title); button.setTag(method); button.setOnClickListener(this); LayoutParams lp = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT); lp.bottomMargin = mMargin; mView.addView(button, lp); } @Override protected void onResume() { super.onResume(); sendBroadcast(new Intent(mAction).putExtra(Intent.EXTRA_INTENT, getIntent())); } @Override protected void onDestroy() { unregisterReceiver(mCommandReceiver); super.onDestroy(); } @Override public void onClick(View view) { handleCommand(new Intent().putExtra(EXTRA_METHOD, (String) view.getTag())); } private void handleCommand(Intent cmd) { String methodName = cmd.getStringExtra(EXTRA_METHOD); try { Method method = null; for (Method m : this.getClass().getDeclaredMethods()) { if (methodName.equals(m.getName()) && !Modifier.isStatic(m.getModifiers()) && Modifier.isPublic(m.getModifiers())) { method = m; break; } } Object[] args = new Object[method.getParameterTypes().length]; Bundle extras = cmd.getExtras(); for (int i = 0; i < args.length; i++) { args[i] = extras.get(EXTRA_PARAM + i); } method.invoke(this, args); } catch (Exception e) { throw new RuntimeException(e); } } public static Intent getCommandIntent(Class<?> clazz, String method) { return new Intent(clazz.getName() + SUFFIX_COMMAND) .putExtra(EXTRA_METHOD, method); } }
tests/src/com/android/launcher3/testcomponent/RequestPinItemActivity.java 0 → 100644 +89 −0 Original line number Original line Diff line number Diff line /* * Copyright (C) 2017 The Android Open Source 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 com.android.launcher3.testcomponent; import android.annotation.TargetApi; import android.app.PendingIntent; import android.appwidget.AppWidgetManager; import android.content.ComponentName; import android.content.IntentSender; import android.content.pm.ShortcutInfo; import android.content.pm.ShortcutManager; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.drawable.Icon; import android.os.Bundle; /** * Sample activity to request pinning an item. */ @TargetApi(26) public class RequestPinItemActivity extends BaseTestingActivity { private PendingIntent mCallback = null; private String mShortcutId; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addButton("Pin Shortcut", "pinShortcut"); addButton("Pin Widget without config ", "pinWidgetNoConfig"); addButton("Pin Widget with config", "pinWidgetWithConfig"); } public void setCallback(PendingIntent callback) { mCallback = callback; } public void setShortcutId(String id) { mShortcutId = id; } public void pinShortcut() { ShortcutManager sm = getSystemService(ShortcutManager.class); // Generate icon int r = sm.getIconMaxWidth() / 2; Bitmap icon = Bitmap.createBitmap(r * 2, r * 2, Bitmap.Config.ARGB_8888); Paint p = new Paint(); p.setColor(Color.RED); new Canvas(icon).drawCircle(r, r, r, p); ShortcutInfo info = new ShortcutInfo.Builder(this, mShortcutId) .setIntent(getPackageManager().getLaunchIntentForPackage(getPackageName())) .setIcon(Icon.createWithBitmap(icon)) .setShortLabel("Test shortcut") .build(); IntentSender callback = mCallback == null ? null : mCallback.getIntentSender(); sm.requestPinShortcut(info, callback); } public void pinWidgetNoConfig() { requestWidget(new ComponentName(this, AppWidgetNoConfig.class)); } public void pinWidgetWithConfig() { requestWidget(new ComponentName(this, AppWidgetWithConfig.class)); } private void requestWidget(ComponentName cn) { AppWidgetManager.getInstance(this).requestPinAppWidget(cn, mCallback); } }
tests/src/com/android/launcher3/testcomponent/WidgetConfigActivity.java +9 −29 Original line number Original line Diff line number Diff line Loading @@ -15,50 +15,30 @@ */ */ package com.android.launcher3.testcomponent; package com.android.launcher3.testcomponent; import android.app.Activity; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.os.Bundle; import android.os.Bundle; /** /** * Simple activity for widget configuration * Simple activity for widget configuration */ */ public class WidgetConfigActivity extends Activity { public class WidgetConfigActivity extends BaseTestingActivity { public static final String SUFFIX_FINISH = "-finish"; public static final String SUFFIX_FINISH = "-finish"; public static final String EXTRA_CODE = "code"; public static final String EXTRA_CODE = "code"; public static final String EXTRA_INTENT = "intent"; private final BroadcastReceiver mFinishReceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { WidgetConfigActivity.this.setResult( intent.getIntExtra(EXTRA_CODE, RESULT_CANCELED), (Intent) intent.getParcelableExtra(EXTRA_INTENT)); WidgetConfigActivity.this.finish(); } }; private final String mAction = this.getClass().getName(); @Override @Override protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); super.onCreate(savedInstanceState); registerReceiver(mFinishReceiver, new IntentFilter(mAction + SUFFIX_FINISH)); addButton("Cancel", "clickCancel"); addButton("OK", "clickOK"); } } @Override public void clickCancel() { protected void onResume() { setResult(RESULT_CANCELED); super.onResume(); finish(); sendBroadcast(new Intent(mAction).putExtra(Intent.EXTRA_INTENT, getIntent())); } } @Override public void clickOK() { protected void onDestroy() { setResult(RESULT_OK); unregisterReceiver(mFinishReceiver); finish(); super.onDestroy(); } } } }