public class

PerComplicationTypeMargins

extends java.lang.Object

implements VersionedParcelable

 java.lang.Object

↳androidx.wear.watchface.style.data.PerComplicationTypeMargins

Gradle dependencies

compile group: 'androidx.wear.watchface', name: 'watchface-data', version: '1.3.0-alpha03'

  • groupId: androidx.wear.watchface
  • artifactId: watchface-data
  • version: 1.3.0-alpha03

Artifact androidx.wear.watchface:watchface-data:1.3.0-alpha03 it located at Google repository (https://maven.google.com/)

Summary

Fields
public java.util.Map<java.lang.Integer, RectF>mPerComplicationTypeMargins

Constructors
publicPerComplicationTypeMargins(java.util.Map<java.lang.Integer, RectF> perComplicationTypeMargins)

Methods
from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Fields

public java.util.Map<java.lang.Integer, RectF> mPerComplicationTypeMargins

Constructors

public PerComplicationTypeMargins(java.util.Map<java.lang.Integer, RectF> perComplicationTypeMargins)

Source

/*
 * Copyright 2022 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 androidx.wear.watchface.style.data;

import android.graphics.RectF;

import androidx.annotation.NonNull;
import androidx.annotation.RestrictTo;
import androidx.versionedparcelable.ParcelField;
import androidx.versionedparcelable.VersionedParcelable;
import androidx.versionedparcelable.VersionedParcelize;

import java.util.Map;

@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
@VersionedParcelize
public class PerComplicationTypeMargins implements VersionedParcelable {
    @ParcelField(1)
    @NonNull
    public Map<Integer, RectF> mPerComplicationTypeMargins;

    PerComplicationTypeMargins() {}

    public PerComplicationTypeMargins(@NonNull Map<Integer, RectF> perComplicationTypeMargins) {
        mPerComplicationTypeMargins = perComplicationTypeMargins;
    }
}