diff options
| author | 2016-05-17 12:35:39 -0700 | |
|---|---|---|
| committer | 2016-05-17 12:36:22 -0700 | |
| commit | 3bc57882c8b7fdbfb403a56c3a5552f564e28f15 (patch) | |
| tree | 29593c9b5d544752ae64736534c16b63d58dfe47 | |
| parent | 967fcfa5939403017a6edc6d365b2996b915685d (diff) | |
Update docs for minWidth/minHeight attributes
Rename WindowLayout#minimalWidth and #minimalHeight to #minWidth
and #minHeight to be consistent with other APIs.
Bug: 28775586
Change-Id: I6064db6aa41a32118619b69c7db07a612f5597ac
| -rw-r--r-- | docs/html/preview/features/multi-window.jd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/html/preview/features/multi-window.jd b/docs/html/preview/features/multi-window.jd index fec016861e80..a4f389a0948b 100644 --- a/docs/html/preview/features/multi-window.jd +++ b/docs/html/preview/features/multi-window.jd @@ -253,7 +253,7 @@ android:supportsPictureInPicture=["true" | "false"] </dd> <dt> - <code>android:minimalHeight</code>, <code>android:minimalWidth</code> + <code>android:minHeight</code>, <code>android:minWidth</code> </dt> <dd> @@ -275,8 +275,8 @@ android:supportsPictureInPicture=["true" | "false"] <layout android:defaultHeight="500dp" android:defaultWidth="600dp" android:gravity="top|end" - android:minimalHeight="450dp" - android:minimalWidth="300dp" /> + android:minHeight="450dp" + android:minWidth="300dp" /> </activity> </pre> |