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

Commit 58d353e4 authored by Sergey Nikolaienkov's avatar Sergey Nikolaienkov Committed by Automerger Merge Worker
Browse files

Merge "Add PipControlsView constructors" into rvc-dev am: 0f829652

Change-Id: Id7f0f138d7a45af0d3521b22edc9335e3a6bfc25
parents 62196a84 0f829652
Loading
Loading
Loading
Loading
+8 −0
Original line number Original line Diff line number Diff line
@@ -30,6 +30,14 @@ import com.android.systemui.R;
 */
 */
public class PipControlsView extends LinearLayout {
public class PipControlsView extends LinearLayout {


    public PipControlsView(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public PipControlsView(Context context, AttributeSet attrs, int defStyleAttr) {
        this(context, attrs, defStyleAttr, 0);
    }

    public PipControlsView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
    public PipControlsView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
        super(context, attrs, defStyleAttr, defStyleRes);
        super(context, attrs, defStyleAttr, defStyleRes);
        LayoutInflater layoutInflater = (LayoutInflater) getContext().getSystemService(
        LayoutInflater layoutInflater = (LayoutInflater) getContext().getSystemService(