Android Open Source - DashClockWidget Widget View Builder






From Project

Back to project page DashClockWidget.

License

The source code is released under:

Apache License

If you think the Android project DashClockWidget listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright 2013 Google Inc.//from   w  w  w .j  a  v  a 2s. c o m
 *
 * 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.google.android.apps.dashclock.render;

import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.widget.RemoteViews;

/**
 * {@link ViewBuilder} implementation for {@link RemoteViews}.
 */
public class WidgetViewBuilder implements ViewBuilder {
    private Context mContext;
    private RemoteViews mRemoteViews;

    public WidgetViewBuilder(Context context) {
        mContext = context;
    }

    @Override
    public void loadRootLayout(Object container, int layoutResId) {
        mRemoteViews = new RemoteViews(mContext.getPackageName(), layoutResId);
    }

    @Override
    public void useRoot(Object root) {
        throw new UnsupportedOperationException("Can't reuse RemoteViews for WidgetViewBuilder.");
    }

    @Override
    public Object inflateChildLayout(int layoutResId, int containerId) {
        return new RemoteViews(mContext.getPackageName(), layoutResId);
    }

    @Override
    public void setLinearLayoutGravity(int viewId, int gravity) {
        mRemoteViews.setInt(viewId, "setGravity", gravity);
    }

    @Override
    public void setViewPadding(int viewId, int left, int top, int right, int bottom) {
        mRemoteViews.setViewPadding(viewId, left, top, right, bottom);
    }

    @Override
    public void addView(int viewId, Object child) {
        mRemoteViews.addView(viewId, (RemoteViews) child);
    }

    @Override
    public void removeAllViews(int viewId) {
        mRemoteViews.removeAllViews(viewId);
    }

    @Override
    public void setViewVisibility(int viewId, int visibility) {
        mRemoteViews.setViewVisibility(viewId, visibility);
    }

    @Override
    public void setViewBackgroundColor(int viewId, int color) {
        mRemoteViews.setInt(viewId, "setBackgroundColor", color);
    }

    @Override
    public void setImageViewBitmap(int viewId, Bitmap bitmap) {
        mRemoteViews.setImageViewBitmap(viewId, bitmap);
    }

    @Override
    public void setViewContentDescription(int viewId, String contentDescription) {
        mRemoteViews.setContentDescription(viewId, contentDescription);
    }

    @Override
    public void setTextViewText(int viewId, CharSequence text) {
        mRemoteViews.setTextViewText(viewId, text);
    }

    @Override
    public void setTextViewColor(int viewId, int color) {
        mRemoteViews.setTextColor(viewId, color);
    }

    @Override
    public void setTextViewMaxLines(int viewId, int maxLines) {
        mRemoteViews.setInt(viewId, "setMaxLines", maxLines);
    }

    @Override
    public void setTextViewSingleLine(int viewId, boolean singleLine) {
        mRemoteViews.setBoolean(viewId, "setSingleLine", singleLine);
    }

    @Override
    public void setTextViewTextSize(int viewId, int unit, float size) {
        mRemoteViews.setTextViewTextSize(viewId, unit, size);
    }

    @Override
    public void setViewClickIntent(int viewId, Intent clickIntent) {
        mRemoteViews.setOnClickPendingIntent(viewId,
                PendingIntent.getActivity(mContext, 0,
                        clickIntent, PendingIntent.FLAG_UPDATE_CURRENT));
    }

    @Override
    public void setViewClickFillInIntent(int viewId, Intent fillIntent) {
        mRemoteViews.setOnClickFillInIntent(viewId, fillIntent);
    }

    @Override
    public Object getRoot() {
        return mRemoteViews;
    }
}




Java Source Code List

com.example.dashclock.exampleextension.ExampleExtension.java
com.example.dashclock.exampleextension.ExampleSettingsActivity.java
com.google.android.apps.dashclock.BackupAgent.java
com.google.android.apps.dashclock.DashClockService.java
com.google.android.apps.dashclock.DaydreamService.java
com.google.android.apps.dashclock.ExtensionHost.java
com.google.android.apps.dashclock.ExtensionManager.java
com.google.android.apps.dashclock.ExtensionPackageChangeReceiver.java
com.google.android.apps.dashclock.HelpUtils.java
com.google.android.apps.dashclock.LogAttachmentProvider.java
com.google.android.apps.dashclock.LogUtils.java
com.google.android.apps.dashclock.PeriodicExtensionRefreshReceiver.java
com.google.android.apps.dashclock.Utils.java
com.google.android.apps.dashclock.WidgetClickProxyActivity.java
com.google.android.apps.dashclock.WidgetProvider.java
com.google.android.apps.dashclock.api.DashClockExtension.java
com.google.android.apps.dashclock.api.ExtensionData.java
com.google.android.apps.dashclock.api.VisibleExtension.java
com.google.android.apps.dashclock.api.package-info.java
com.google.android.apps.dashclock.calendar.CalendarExtension.java
com.google.android.apps.dashclock.calendar.CalendarSelectionPreference.java
com.google.android.apps.dashclock.calendar.CalendarSettingsActivity.java
com.google.android.apps.dashclock.configuration.AppChooserPreference.java
com.google.android.apps.dashclock.configuration.AppearanceConfig.java
com.google.android.apps.dashclock.configuration.BaseSettingsActivity.java
com.google.android.apps.dashclock.configuration.ColorPreference.java
com.google.android.apps.dashclock.configuration.ConfigurationActivity.java
com.google.android.apps.dashclock.configuration.ConfigureAdvancedFragment.java
com.google.android.apps.dashclock.configuration.ConfigureAppearanceFragment.java
com.google.android.apps.dashclock.configuration.ConfigureDaydreamFragment.java
com.google.android.apps.dashclock.configuration.ConfigureExtensionsFragment.java
com.google.android.apps.dashclock.configuration.DaydreamProxyActivity.java
com.google.android.apps.dashclock.gmail.GmailContract.java
com.google.android.apps.dashclock.gmail.GmailExtension.java
com.google.android.apps.dashclock.gmail.GmailSettingsActivity.java
com.google.android.apps.dashclock.nextalarm.NextAlarmExtension.java
com.google.android.apps.dashclock.nextalarm.NextAlarmSettingsActivity.java
com.google.android.apps.dashclock.phone.MissedCallsExtension.java
com.google.android.apps.dashclock.phone.SmsExtension.java
com.google.android.apps.dashclock.phone.TelephonyProviderConstants.java
com.google.android.apps.dashclock.render.DashClockRenderer.java
com.google.android.apps.dashclock.render.SimpleRenderer.java
com.google.android.apps.dashclock.render.SimpleViewBuilder.java
com.google.android.apps.dashclock.render.ViewBuilder.java
com.google.android.apps.dashclock.render.WidgetRemoteViewsFactoryService.java
com.google.android.apps.dashclock.render.WidgetRenderer.java
com.google.android.apps.dashclock.render.WidgetViewBuilder.java
com.google.android.apps.dashclock.ui.DragGripView.java
com.google.android.apps.dashclock.ui.EdgeEffectUtil.java
com.google.android.apps.dashclock.ui.PagerPositionStrip.java
com.google.android.apps.dashclock.ui.SimplePagedTabsHelper.java
com.google.android.apps.dashclock.ui.SwipeDismissListViewTouchListener.java
com.google.android.apps.dashclock.ui.UndoBarController.java
com.google.android.apps.dashclock.weather.CantGetWeatherException.java
com.google.android.apps.dashclock.weather.WeatherData.java
com.google.android.apps.dashclock.weather.WeatherExtension.java
com.google.android.apps.dashclock.weather.WeatherLocationPreference.java
com.google.android.apps.dashclock.weather.WeatherRetryReceiver.java
com.google.android.apps.dashclock.weather.WeatherSettingsActivity.java
com.google.android.apps.dashclock.weather.YahooWeatherApiClient.java
com.google.android.apps.dashclock.weather.YahooWeatherApiConfig.java