Lines Matching defs:in

5  * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
24 * Describes the meta data for an installed AppWidget provider. The fields in this class
25 * correspond to the fields in the <code>&lt;appwidget-provider&gt;</code> xml tag.
31 * {@link android.appwidget as described in the AppWidget package documentation}.
33 * <p>This field corresponds to the <code>android:name</code> attribute in
34 * the <code>&lt;receiver&gt;</code> element in the AndroidManifest.xml file.
39 * Minimum width of the AppWidget, in dp.
41 * <p>This field corresponds to the <code>android:minWidth</code> attribute in
47 * Minimum height of the AppWidget, in dp.
49 * <p>This field corresponds to the <code>android:minHeight</code> attribute in
55 * How often, in milliseconds, that this AppWidget wants to be updated.
58 * <p>This field corresponds to the <code>android:updatePeriodMillis</code> attribute in
70 * <p>This field corresponds to the <code>android:initialLayout</code> attribute in
78 * <p>This class name of field corresponds to the <code>android:configure</code> attribute in
85 * The label to display to the user in the AppWidget picker. If not supplied in the
88 * <p>This field corresponds to the <code>android:label</code> attribute in
89 * the <code>&lt;receiver&gt;</code> element in the AndroidManifest.xml file.
94 * The icon to display for this AppWidget in the AppWidget picker. If not supplied in the
97 * <p>This field corresponds to the <code>android:icon</code> attribute in
98 * the <code>&lt;receiver&gt;</code> element in the AndroidManifest.xml file.
120 public AppWidgetProviderInfo(Parcel in) {
121 if (0 != in.readInt()) {
122 this.provider = new ComponentName(in);
124 this.minWidth = in.readInt();
125 this.minHeight = in.readInt();
126 this.updatePeriodMillis = in.readInt();
127 this.initialLayout = in.readInt();
128 if (0 != in.readInt()) {
129 this.configure = new ComponentName(in);
131 this.label = in.readString();
132 this.icon = in.readInt();