no need to spell out android.view.View

This commit is contained in:
Brad Pitcher 2019-04-18 21:48:33 -07:00
parent ee6e5ed5d0
commit 73c39fc3d0
No known key found for this signature in database
GPG Key ID: 242307B374A1710A
1 changed files with 2 additions and 2 deletions

View File

@ -179,9 +179,9 @@ public class PlayerWidgetJobService extends SafeJobIntentService {
int minWidth = options.getInt(AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH);
int columns = getCellsForSize(minWidth);
if (columns < 3) {
views.setViewVisibility(R.id.layout_center, android.view.View.INVISIBLE);
views.setViewVisibility(R.id.layout_center, View.INVISIBLE);
} else {
views.setViewVisibility(R.id.layout_center, android.view.View.VISIBLE);
views.setViewVisibility(R.id.layout_center, View.VISIBLE);
}
manager.updateAppWidget(id, views);
}