Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f78484b0 authored by Scott Main's avatar Scott Main Committed by Android Git Automerger
Browse files

am ea893536: am c4473d10: am 27a8508e: add attributes reference for splimotionevents and layoutmode

* commit 'ea893536':
  add attributes reference for splimotionevents and layoutmode
parents 3b7e6b95 ea893536
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -97,6 +97,8 @@ import static android.os.Build.VERSION_CODES.JELLY_BEAN_MR1;
 * @attr ref android.R.styleable#ViewGroup_addStatesFromChildren
 * @attr ref android.R.styleable#ViewGroup_descendantFocusability
 * @attr ref android.R.styleable#ViewGroup_animateLayoutChanges
 * @attr ref android.R.styleable#ViewGroup_splitMotionEvents
 * @attr ref android.R.styleable#ViewGroup_layoutMode
 */
public abstract class ViewGroup extends View implements ViewParent, ViewManager {
    private static final String TAG = "ViewGroup";
@@ -2256,6 +2258,7 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
     * @param split <code>true</code> to allow MotionEvents to be split and dispatched to multiple
     *              child views. <code>false</code> to only allow one child view to be the target of
     *              any MotionEvent received by this ViewGroup.
     * @attr ref android.R.styleable#ViewGroup_splitMotionEvents
     */
    public void setMotionEventSplittingEnabled(boolean split) {
        // TODO Applications really shouldn't change this setting mid-touch event,
@@ -4905,6 +4908,7 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
     * @param layoutMode the layout mode to use during layout operations
     *
     * @see #getLayoutMode()
     * @attr ref android.R.styleable#ViewGroup_layoutMode
     */
    public void setLayoutMode(int layoutMode) {
        if (mLayoutMode != layoutMode) {