Added a small widget.
This commit is contained in:
parent
e9ee47fbcc
commit
ff41a67448
9 changed files with 367 additions and 12 deletions
|
|
@ -139,6 +139,19 @@
|
||||||
android:resource="@xml/app_widget_classic_info" />
|
android:resource="@xml/app_widget_classic_info" />
|
||||||
</receiver>
|
</receiver>
|
||||||
|
|
||||||
|
<receiver
|
||||||
|
android:name=".appwidgets.AppWidgetSmall"
|
||||||
|
android:exported="false"
|
||||||
|
android:label="@string/app_widget_small_name">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="android.appwidget.provider"
|
||||||
|
android:resource="@xml/app_widget_small_info" />
|
||||||
|
</receiver>
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".ui.activities.SettingsActivity"
|
android:name=".ui.activities.SettingsActivity"
|
||||||
android:label="@string/action_settings" />
|
android:label="@string/action_settings" />
|
||||||
|
|
|
||||||
|
|
@ -62,9 +62,9 @@ public class AppWidgetClassic extends BaseAppWidget {
|
||||||
|
|
||||||
appWidgetView.setViewVisibility(R.id.media_titles, View.INVISIBLE);
|
appWidgetView.setViewVisibility(R.id.media_titles, View.INVISIBLE);
|
||||||
appWidgetView.setViewVisibility(R.id.image, View.INVISIBLE);
|
appWidgetView.setViewVisibility(R.id.image, View.INVISIBLE);
|
||||||
appWidgetView.setImageViewBitmap(R.id.button_next, createBitmap(Util.getTintedDrawable(context, R.drawable.ic_skip_next_white_24dp, MaterialValueHelper.getPrimaryTextColor(context, true)), 1f));
|
appWidgetView.setImageViewBitmap(R.id.button_next, createBitmap(Util.getTintedDrawable(context, R.drawable.ic_skip_next_white_24dp, MaterialValueHelper.getSecondaryTextColor(context, false)), 1f));
|
||||||
appWidgetView.setImageViewBitmap(R.id.button_prev, createBitmap(Util.getTintedDrawable(context, R.drawable.ic_skip_previous_white_24dp, MaterialValueHelper.getPrimaryTextColor(context, true)), 1f));
|
appWidgetView.setImageViewBitmap(R.id.button_prev, createBitmap(Util.getTintedDrawable(context, R.drawable.ic_skip_previous_white_24dp, MaterialValueHelper.getSecondaryTextColor(context, false)), 1f));
|
||||||
appWidgetView.setImageViewBitmap(R.id.button_toggle_play_pause, createBitmap(Util.getTintedDrawable(context, R.drawable.ic_play_arrow_white_24dp, MaterialValueHelper.getPrimaryTextColor(context, true)), 1f));
|
appWidgetView.setImageViewBitmap(R.id.button_toggle_play_pause, createBitmap(Util.getTintedDrawable(context, R.drawable.ic_play_arrow_white_24dp, MaterialValueHelper.getSecondaryTextColor(context, false)), 1f));
|
||||||
|
|
||||||
linkButtons(context, appWidgetView);
|
linkButtons(context, appWidgetView);
|
||||||
pushUpdate(context, appWidgetIds, appWidgetView);
|
pushUpdate(context, appWidgetIds, appWidgetView);
|
||||||
|
|
@ -122,11 +122,11 @@ public class AppWidgetClassic extends BaseAppWidget {
|
||||||
|
|
||||||
// Set correct drawable for pause state
|
// Set correct drawable for pause state
|
||||||
int playPauseRes = isPlaying ? R.drawable.ic_pause_white_24dp : R.drawable.ic_play_arrow_white_24dp;
|
int playPauseRes = isPlaying ? R.drawable.ic_pause_white_24dp : R.drawable.ic_play_arrow_white_24dp;
|
||||||
appWidgetView.setImageViewBitmap(R.id.button_toggle_play_pause, createBitmap(Util.getTintedDrawable(service, playPauseRes, MaterialValueHelper.getPrimaryTextColor(service, true)), 1f));
|
appWidgetView.setImageViewBitmap(R.id.button_toggle_play_pause, createBitmap(Util.getTintedDrawable(service, playPauseRes, MaterialValueHelper.getSecondaryTextColor(service, false)), 1f));
|
||||||
|
|
||||||
// set prev/next button drawables
|
// set prev/next button drawables
|
||||||
appWidgetView.setImageViewBitmap(R.id.button_next, createBitmap(Util.getTintedDrawable(service, R.drawable.ic_skip_next_white_24dp, MaterialValueHelper.getPrimaryTextColor(service, true)), 1f));
|
appWidgetView.setImageViewBitmap(R.id.button_next, createBitmap(Util.getTintedDrawable(service, R.drawable.ic_skip_next_white_24dp, MaterialValueHelper.getSecondaryTextColor(service, false)), 1f));
|
||||||
appWidgetView.setImageViewBitmap(R.id.button_prev, createBitmap(Util.getTintedDrawable(service, R.drawable.ic_skip_previous_white_24dp, MaterialValueHelper.getPrimaryTextColor(service, true)), 1f));
|
appWidgetView.setImageViewBitmap(R.id.button_prev, createBitmap(Util.getTintedDrawable(service, R.drawable.ic_skip_previous_white_24dp, MaterialValueHelper.getSecondaryTextColor(service, false)), 1f));
|
||||||
|
|
||||||
// Link actions buttons to intents
|
// Link actions buttons to intents
|
||||||
linkButtons(service, appWidgetView);
|
linkButtons(service, appWidgetView);
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,208 @@
|
||||||
|
package com.kabouzeid.gramophone.appwidgets;
|
||||||
|
|
||||||
|
import android.app.PendingIntent;
|
||||||
|
import android.appwidget.AppWidgetManager;
|
||||||
|
import android.content.ComponentName;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.graphics.Bitmap;
|
||||||
|
import android.graphics.drawable.Drawable;
|
||||||
|
import android.support.annotation.Nullable;
|
||||||
|
import android.text.TextUtils;
|
||||||
|
import android.view.View;
|
||||||
|
import android.widget.RemoteViews;
|
||||||
|
|
||||||
|
import com.bumptech.glide.Glide;
|
||||||
|
import com.bumptech.glide.request.animation.GlideAnimation;
|
||||||
|
import com.bumptech.glide.request.target.SimpleTarget;
|
||||||
|
import com.bumptech.glide.request.target.Target;
|
||||||
|
import com.kabouzeid.appthemehelper.util.MaterialValueHelper;
|
||||||
|
import com.kabouzeid.gramophone.R;
|
||||||
|
import com.kabouzeid.gramophone.glide.SongGlideRequest;
|
||||||
|
import com.kabouzeid.gramophone.model.Song;
|
||||||
|
import com.kabouzeid.gramophone.service.MusicService;
|
||||||
|
import com.kabouzeid.gramophone.ui.activities.MainActivity;
|
||||||
|
import com.kabouzeid.gramophone.util.Util;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Karim Abou Zeid (kabouzeid)
|
||||||
|
*/
|
||||||
|
public class AppWidgetSmall extends BaseAppWidget {
|
||||||
|
public static final String NAME = "app_widget_small";
|
||||||
|
|
||||||
|
private static AppWidgetSmall mInstance;
|
||||||
|
|
||||||
|
public static synchronized AppWidgetSmall getInstance() {
|
||||||
|
if (mInstance == null) {
|
||||||
|
mInstance = new AppWidgetSmall();
|
||||||
|
}
|
||||||
|
return mInstance;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void onUpdate(final Context context, final AppWidgetManager appWidgetManager,
|
||||||
|
final int[] appWidgetIds) {
|
||||||
|
defaultAppWidget(context, appWidgetIds);
|
||||||
|
final Intent updateIntent = new Intent(MusicService.APP_WIDGET_UPDATE);
|
||||||
|
updateIntent.putExtra(MusicService.EXTRA_APP_WIDGET_NAME, NAME);
|
||||||
|
updateIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds);
|
||||||
|
updateIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
|
||||||
|
context.sendBroadcast(updateIntent);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize given widgets to default state, where we launch Music on
|
||||||
|
* default click and hide actions if service not running.
|
||||||
|
*/
|
||||||
|
private void defaultAppWidget(final Context context, final int[] appWidgetIds) {
|
||||||
|
final RemoteViews appWidgetView = new RemoteViews(context.getPackageName(), R.layout.app_widget_small);
|
||||||
|
|
||||||
|
appWidgetView.setViewVisibility(R.id.media_titles, View.INVISIBLE);
|
||||||
|
appWidgetView.setViewVisibility(R.id.image, View.INVISIBLE);
|
||||||
|
appWidgetView.setImageViewBitmap(R.id.button_next, createBitmap(Util.getTintedDrawable(context, R.drawable.ic_skip_next_white_24dp, MaterialValueHelper.getSecondaryTextColor(context, false)), 1f));
|
||||||
|
appWidgetView.setImageViewBitmap(R.id.button_prev, createBitmap(Util.getTintedDrawable(context, R.drawable.ic_skip_previous_white_24dp, MaterialValueHelper.getSecondaryTextColor(context, false)), 1f));
|
||||||
|
appWidgetView.setImageViewBitmap(R.id.button_toggle_play_pause, createBitmap(Util.getTintedDrawable(context, R.drawable.ic_play_arrow_white_24dp, MaterialValueHelper.getSecondaryTextColor(context, false)), 1f));
|
||||||
|
|
||||||
|
linkButtons(context, appWidgetView);
|
||||||
|
pushUpdate(context, appWidgetIds, appWidgetView);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void pushUpdate(final Context context, final int[] appWidgetIds, final RemoteViews views) {
|
||||||
|
final AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
|
||||||
|
if (appWidgetIds != null) {
|
||||||
|
appWidgetManager.updateAppWidget(appWidgetIds, views);
|
||||||
|
} else {
|
||||||
|
appWidgetManager.updateAppWidget(new ComponentName(context, getClass()), views);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check against {@link AppWidgetManager} if there are any instances of this
|
||||||
|
* widget.
|
||||||
|
*/
|
||||||
|
private boolean hasInstances(final Context context) {
|
||||||
|
final AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
|
||||||
|
final int[] mAppWidgetIds = appWidgetManager.getAppWidgetIds(new ComponentName(context,
|
||||||
|
getClass()));
|
||||||
|
return mAppWidgetIds.length > 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle a change notification coming over from
|
||||||
|
* {@link MusicService}
|
||||||
|
*/
|
||||||
|
public void notifyChange(final MusicService service, final String what) {
|
||||||
|
if (hasInstances(service)) {
|
||||||
|
if (MusicService.META_CHANGED.equals(what) || MusicService.PLAY_STATE_CHANGED.equals(what)) {
|
||||||
|
performUpdate(service, null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update all active widget instances by pushing changes
|
||||||
|
*/
|
||||||
|
public void performUpdate(final MusicService service, final int[] appWidgetIds) {
|
||||||
|
final RemoteViews appWidgetView = new RemoteViews(service.getPackageName(), R.layout.app_widget_small);
|
||||||
|
|
||||||
|
final boolean isPlaying = service.isPlaying();
|
||||||
|
final Song song = service.getCurrentSong();
|
||||||
|
|
||||||
|
// Set the titles and artwork
|
||||||
|
if (TextUtils.isEmpty(song.title) && TextUtils.isEmpty(song.artistName)) {
|
||||||
|
appWidgetView.setViewVisibility(R.id.media_titles, View.INVISIBLE);
|
||||||
|
} else {
|
||||||
|
if (TextUtils.isEmpty(song.title) || TextUtils.isEmpty(song.artistName)) {
|
||||||
|
appWidgetView.setTextViewText(R.id.text_separator, "");
|
||||||
|
} else {
|
||||||
|
appWidgetView.setTextViewText(R.id.text_separator, "•");
|
||||||
|
}
|
||||||
|
|
||||||
|
appWidgetView.setViewVisibility(R.id.media_titles, View.VISIBLE);
|
||||||
|
appWidgetView.setTextViewText(R.id.title, song.title);
|
||||||
|
appWidgetView.setTextViewText(R.id.text, song.artistName);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set correct drawable for pause state
|
||||||
|
int playPauseRes = isPlaying ? R.drawable.ic_pause_white_24dp : R.drawable.ic_play_arrow_white_24dp;
|
||||||
|
appWidgetView.setImageViewBitmap(R.id.button_toggle_play_pause, createBitmap(Util.getTintedDrawable(service, playPauseRes, MaterialValueHelper.getSecondaryTextColor(service, false)), 1f));
|
||||||
|
|
||||||
|
// set prev/next button drawables
|
||||||
|
appWidgetView.setImageViewBitmap(R.id.button_next, createBitmap(Util.getTintedDrawable(service, R.drawable.ic_skip_next_white_24dp, MaterialValueHelper.getSecondaryTextColor(service, false)), 1f));
|
||||||
|
appWidgetView.setImageViewBitmap(R.id.button_prev, createBitmap(Util.getTintedDrawable(service, R.drawable.ic_skip_previous_white_24dp, MaterialValueHelper.getSecondaryTextColor(service, false)), 1f));
|
||||||
|
|
||||||
|
// Link actions buttons to intents
|
||||||
|
linkButtons(service, appWidgetView);
|
||||||
|
|
||||||
|
// load the album cover async and push the update on completion
|
||||||
|
final Context appContext = service.getApplicationContext();
|
||||||
|
final int widgetImageSize = service.getResources().getDimensionPixelSize(R.dimen.app_widget_small_image_size);
|
||||||
|
service.runOnUiThread(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
if (target != null) {
|
||||||
|
Glide.clear(target);
|
||||||
|
}
|
||||||
|
target = SongGlideRequest.Builder.from(Glide.with(appContext), song)
|
||||||
|
.checkIgnoreMediaStore(appContext)
|
||||||
|
.asBitmap().build()
|
||||||
|
.into(new SimpleTarget<Bitmap>(widgetImageSize, widgetImageSize) {
|
||||||
|
@Override
|
||||||
|
public void onResourceReady(Bitmap resource, GlideAnimation<? super Bitmap> glideAnimation) {
|
||||||
|
update(resource);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onLoadFailed(Exception e, Drawable errorDrawable) {
|
||||||
|
super.onLoadFailed(e, errorDrawable);
|
||||||
|
update(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void update(@Nullable Bitmap bitmap) {
|
||||||
|
appWidgetView.setViewVisibility(R.id.image, View.VISIBLE);
|
||||||
|
if (bitmap == null) {
|
||||||
|
appWidgetView.setImageViewResource(R.id.image, R.drawable.default_album_art);
|
||||||
|
} else {
|
||||||
|
appWidgetView.setImageViewBitmap(R.id.image, bitmap);
|
||||||
|
}
|
||||||
|
pushUpdate(appContext, appWidgetIds, appWidgetView);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private Target<Bitmap> target; // for cancellation
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Link up various button actions using {@link PendingIntent}.
|
||||||
|
*/
|
||||||
|
private void linkButtons(final Context context, final RemoteViews views) {
|
||||||
|
Intent action;
|
||||||
|
PendingIntent pendingIntent;
|
||||||
|
|
||||||
|
final ComponentName serviceName = new ComponentName(context, MusicService.class);
|
||||||
|
|
||||||
|
// Home
|
||||||
|
action = new Intent(context, MainActivity.class);
|
||||||
|
action.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
||||||
|
pendingIntent = PendingIntent.getActivity(context, 0, action, 0);
|
||||||
|
views.setOnClickPendingIntent(R.id.image, pendingIntent);
|
||||||
|
views.setOnClickPendingIntent(R.id.media_titles, pendingIntent);
|
||||||
|
|
||||||
|
// Previous track
|
||||||
|
pendingIntent = buildPendingIntent(context, MusicService.ACTION_REWIND, serviceName);
|
||||||
|
views.setOnClickPendingIntent(R.id.button_prev, pendingIntent);
|
||||||
|
|
||||||
|
// Play and pause
|
||||||
|
pendingIntent = buildPendingIntent(context, MusicService.ACTION_TOGGLE_PAUSE, serviceName);
|
||||||
|
views.setOnClickPendingIntent(R.id.button_toggle_play_pause, pendingIntent);
|
||||||
|
|
||||||
|
// Next track
|
||||||
|
pendingIntent = buildPendingIntent(context, MusicService.ACTION_SKIP, serviceName);
|
||||||
|
views.setOnClickPendingIntent(R.id.button_next, pendingIntent);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -38,6 +38,7 @@ import com.bumptech.glide.request.animation.GlideAnimation;
|
||||||
import com.bumptech.glide.request.target.SimpleTarget;
|
import com.bumptech.glide.request.target.SimpleTarget;
|
||||||
import com.kabouzeid.gramophone.R;
|
import com.kabouzeid.gramophone.R;
|
||||||
import com.kabouzeid.gramophone.appwidgets.AppWidgetClassic;
|
import com.kabouzeid.gramophone.appwidgets.AppWidgetClassic;
|
||||||
|
import com.kabouzeid.gramophone.appwidgets.AppWidgetSmall;
|
||||||
import com.kabouzeid.gramophone.glide.BlurTransformation;
|
import com.kabouzeid.gramophone.glide.BlurTransformation;
|
||||||
import com.kabouzeid.gramophone.glide.SongGlideRequest;
|
import com.kabouzeid.gramophone.glide.SongGlideRequest;
|
||||||
import com.kabouzeid.gramophone.helper.PlayingNotificationHelper;
|
import com.kabouzeid.gramophone.helper.PlayingNotificationHelper;
|
||||||
|
|
@ -112,6 +113,7 @@ public class MusicService extends Service implements SharedPreferences.OnSharedP
|
||||||
|
|
||||||
private final IBinder musicBind = new MusicBinder();
|
private final IBinder musicBind = new MusicBinder();
|
||||||
|
|
||||||
|
private AppWidgetSmall appWidgetSmall = AppWidgetSmall.getInstance();
|
||||||
private AppWidgetClassic appWidgetClassic = AppWidgetClassic.getInstance();
|
private AppWidgetClassic appWidgetClassic = AppWidgetClassic.getInstance();
|
||||||
|
|
||||||
private Playback playback;
|
private Playback playback;
|
||||||
|
|
@ -937,6 +939,7 @@ public class MusicService extends Service implements SharedPreferences.OnSharedP
|
||||||
private void sendChangeInternal(final String what) {
|
private void sendChangeInternal(final String what) {
|
||||||
sendBroadcast(new Intent(what));
|
sendBroadcast(new Intent(what));
|
||||||
appWidgetClassic.notifyChange(this, what);
|
appWidgetClassic.notifyChange(this, what);
|
||||||
|
appWidgetSmall.notifyChange(this, what);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void handleChangeInternal(@NonNull final String what) {
|
private void handleChangeInternal(@NonNull final String what) {
|
||||||
|
|
@ -1161,6 +1164,9 @@ public class MusicService extends Service implements SharedPreferences.OnSharedP
|
||||||
if (AppWidgetClassic.NAME.equals(command)) {
|
if (AppWidgetClassic.NAME.equals(command)) {
|
||||||
final int[] small = intent.getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS);
|
final int[] small = intent.getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS);
|
||||||
appWidgetClassic.performUpdate(MusicService.this, small);
|
appWidgetClassic.performUpdate(MusicService.this, small);
|
||||||
|
} else if (AppWidgetSmall.NAME.equals(command)) {
|
||||||
|
final int[] small = intent.getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS);
|
||||||
|
appWidgetSmall.performUpdate(MusicService.this, small);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="@dimen/app_widget_classic_height"
|
android:layout_height="@dimen/app_widget_classic_height"
|
||||||
android:background="#AAFFFFFF"
|
android:background="#AA000000"
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
tools:ignore="ContentDescription">
|
tools:ignore="ContentDescription">
|
||||||
|
|
||||||
|
|
@ -34,7 +34,7 @@
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/notification_selector"
|
android:background="@drawable/notification_selector"
|
||||||
tools:src="@drawable/ic_skip_previous_white_24dp"
|
tools:src="@drawable/ic_skip_previous_white_24dp"
|
||||||
tools:tint="#000" />
|
tools:tint="#fff" />
|
||||||
|
|
||||||
<ImageButton
|
<ImageButton
|
||||||
android:id="@+id/button_toggle_play_pause"
|
android:id="@+id/button_toggle_play_pause"
|
||||||
|
|
@ -43,7 +43,7 @@
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/notification_selector"
|
android:background="@drawable/notification_selector"
|
||||||
tools:src="@drawable/ic_play_arrow_white_24dp"
|
tools:src="@drawable/ic_play_arrow_white_24dp"
|
||||||
tools:tint="#000" />
|
tools:tint="#fff" />
|
||||||
|
|
||||||
<ImageButton
|
<ImageButton
|
||||||
android:id="@+id/button_next"
|
android:id="@+id/button_next"
|
||||||
|
|
@ -52,7 +52,7 @@
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@drawable/notification_selector"
|
android:background="@drawable/notification_selector"
|
||||||
tools:src="@drawable/ic_skip_next_white_24dp"
|
tools:src="@drawable/ic_skip_next_white_24dp"
|
||||||
tools:tint="#000" />
|
tools:tint="#fff" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
@ -73,7 +73,7 @@
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:singleLine="true"
|
android:singleLine="true"
|
||||||
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
||||||
android:textColor="@color/ate_primary_text_light"
|
android:textColor="@color/ate_primary_text_dark"
|
||||||
tools:text="Title" />
|
tools:text="Title" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
|
@ -84,7 +84,7 @@
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:singleLine="true"
|
android:singleLine="true"
|
||||||
android:textAppearance="@style/TextAppearance.AppCompat.Caption"
|
android:textAppearance="@style/TextAppearance.AppCompat.Caption"
|
||||||
android:textColor="@color/ate_primary_text_light"
|
android:textColor="@color/ate_secondary_text_dark"
|
||||||
tools:text="Text" />
|
tools:text="Text" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
|
||||||
110
app/src/main/res/layout/app_widget_small.xml
Normal file
110
app/src/main/res/layout/app_widget_small.xml
Normal file
|
|
@ -0,0 +1,110 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="#AA000000"
|
||||||
|
android:columnCount="2"
|
||||||
|
android:gravity="top"
|
||||||
|
android:rowCount="3">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/image"
|
||||||
|
android:layout_width="@dimen/app_widget_small_image_size"
|
||||||
|
android:layout_height="@dimen/app_widget_small_image_size"
|
||||||
|
android:scaleType="centerInside"
|
||||||
|
tools:ignore="ContentDescription" />
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/media_actions"
|
||||||
|
android:layout_gravity="fill_horizontal"
|
||||||
|
android:focusable="true"
|
||||||
|
android:gravity="center_horizontal"
|
||||||
|
android:orientation="horizontal">
|
||||||
|
|
||||||
|
<ImageButton
|
||||||
|
android:id="@+id/button_prev"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="@dimen/app_widget_small_button_height"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:background="@drawable/notification_selector"
|
||||||
|
tools:ignore="ContentDescription"
|
||||||
|
tools:src="@drawable/ic_skip_previous_white_24dp"
|
||||||
|
tools:tint="#fff" />
|
||||||
|
|
||||||
|
<ImageButton
|
||||||
|
android:id="@+id/button_toggle_play_pause"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="@dimen/app_widget_small_button_height"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:background="@drawable/notification_selector"
|
||||||
|
tools:ignore="ContentDescription"
|
||||||
|
tools:src="@drawable/ic_play_arrow_white_24dp"
|
||||||
|
tools:tint="#fff" />
|
||||||
|
|
||||||
|
<ImageButton
|
||||||
|
android:id="@+id/button_next"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="@dimen/app_widget_small_button_height"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:background="@drawable/notification_selector"
|
||||||
|
tools:ignore="ContentDescription"
|
||||||
|
tools:src="@drawable/ic_skip_next_white_24dp"
|
||||||
|
tools:tint="#fff" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/separator"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="1dp"
|
||||||
|
android:layout_columnSpan="2"
|
||||||
|
android:layout_gravity="fill_horizontal"
|
||||||
|
android:background="@color/md_divider_white"
|
||||||
|
tools:ignore="Orientation" />
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/media_titles"
|
||||||
|
android:layout_columnSpan="2"
|
||||||
|
android:layout_gravity="fill"
|
||||||
|
android:focusable="true"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:paddingLeft="8dp"
|
||||||
|
android:paddingRight="8dp">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/title"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:singleLine="true"
|
||||||
|
android:textAppearance="@style/TextAppearance.AppCompat.Body2"
|
||||||
|
android:textColor="@color/ate_primary_text_dark"
|
||||||
|
tools:text="Title" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/text_separator"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:paddingLeft="4dp"
|
||||||
|
android:paddingRight="4dp"
|
||||||
|
android:singleLine="true"
|
||||||
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
||||||
|
android:textColor="@color/ate_secondary_text_dark"
|
||||||
|
tools:ignore="HardcodedText"
|
||||||
|
tools:text="•" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/text"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:singleLine="true"
|
||||||
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
||||||
|
android:textColor="@color/ate_secondary_text_dark"
|
||||||
|
tools:text="Text" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</GridLayout>
|
||||||
|
|
@ -64,4 +64,9 @@ http://developer.android.com/guide/topics/appwidgets/index.html#CreatingLayout
|
||||||
<dimen name="app_widget_classic_min_width">250dp</dimen>
|
<dimen name="app_widget_classic_min_width">250dp</dimen>
|
||||||
<dimen name="app_widget_classic_min_height">40dp</dimen>
|
<dimen name="app_widget_classic_min_height">40dp</dimen>
|
||||||
|
|
||||||
|
<dimen name="app_widget_small_button_height">48dp</dimen>
|
||||||
|
<dimen name="app_widget_small_image_size">48dp</dimen>
|
||||||
|
<dimen name="app_widget_small_min_width">250dp</dimen>
|
||||||
|
<dimen name="app_widget_small_min_height">40dp</dimen>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
|
|
@ -246,4 +246,5 @@
|
||||||
<string name="listing_files">Listing files</string>
|
<string name="listing_files">Listing files</string>
|
||||||
<string name="new_start_directory">%s is the new start directory.</string>
|
<string name="new_start_directory">%s is the new start directory.</string>
|
||||||
<string name="app_widget_classic_name">Phonograph - Classic</string>
|
<string name="app_widget_classic_name">Phonograph - Classic</string>
|
||||||
|
<string name="app_widget_small_name">Phonograph - Small</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
||||||
12
app/src/main/res/xml/app_widget_small_info.xml
Normal file
12
app/src/main/res/xml/app_widget_small_info.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:initialLayout="@layout/app_widget_small"
|
||||||
|
android:minHeight="@dimen/app_widget_small_min_height"
|
||||||
|
android:minWidth="@dimen/app_widget_small_min_width"
|
||||||
|
android:resizeMode="horizontal|vertical"
|
||||||
|
android:updatePeriodMillis="0"
|
||||||
|
android:widgetCategory="keyguard|home_screen"
|
||||||
|
tools:ignore="UnusedAttribute" />
|
||||||
|
|
||||||
|
<!--android:previewImage="@drawable/app_widget_classic"-->
|
||||||
Loading…
Add table
Add a link
Reference in a new issue