Merge "Add PipControlsView constructors" into rvc-dev am: 0f82965251 am: 1f7cec85fe

Change-Id: Ib8fd1eb908b23fb3f57fad851113e2ac6c4e36eb
This commit is contained in:
Sergey Nikolaienkov
2020-04-08 06:46:25 +00:00
committed by Automerger Merge Worker

View File

@@ -30,6 +30,14 @@ import com.android.systemui.R;
*/
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) {
super(context, attrs, defStyleAttr, defStyleRes);
LayoutInflater layoutInflater = (LayoutInflater) getContext().getSystemService(