Skip to content
This repository was archived by the owner on Dec 27, 2024. It is now read-only.

Commit 51622e3

Browse files
authored
small documetation fix and manifest change (#180)
1 parent dc988e6 commit 51622e3

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

constraintlayout/constraintlayout/src/main/java/androidx/constraintlayout/motion/widget/MotionLayout.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
import androidx.constraintlayout.widget.ConstraintSet;
5959
import androidx.constraintlayout.widget.Constraints;
6060
import androidx.constraintlayout.widget.R;
61+
import androidx.core.view.NestedScrollingParent3;
6162
import androidx.core.view.ViewCompat;
6263

6364
import java.util.ArrayList;
@@ -726,8 +727,8 @@
726727
* (used to talk to nested ConstraintLayouts etc.)</td>
727728
* </tr>
728729
* <tr>
729-
* <td>[standard view attributes]</td>
730-
* <td>A collection of post layout view attributes see below</td>
730+
* <td>[standard view attributes](except visibility)</td>
731+
* <td>A collection of post layout view attributes see below </td>
731732
* </tr>
732733
* <tr>
733734
* <p>
@@ -989,7 +990,7 @@
989990
* </p>
990991
*/
991992
public class MotionLayout extends ConstraintLayout implements
992-
androidx.core.view.NestedScrollingParent3 {
993+
NestedScrollingParent3 {
993994

994995
public static final int TOUCH_UP_COMPLETE = 0;
995996
public static final int TOUCH_UP_COMPLETE_TO_START = 1;

projects/MotionLayoutVerification/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
android:configChanges="orientation|screenSize"/>
2525
<activity android:name=".RotationAngular"
2626
android:configChanges="orientation|screenSize"/>
27+
<activity android:name=".CustomSwipeClick" />
2728
</application>
2829

2930
</manifest>

0 commit comments

Comments
 (0)