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

Commit 9bf4b6f8 authored by Deepanshu Gupta's avatar Deepanshu Gupta
Browse files

Add MockView constructor used by LayoutInflater.

Change-Id: I0aede28866c1b87fb66c8a416c5026a9b2cb04fe
parent 78aa664b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -30,6 +30,10 @@ import android.widget.TextView;
 */
public class MockView extends TextView {

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

    public MockView(Context context, AttributeSet attrs, int defStyle) {
        this(context, attrs, defStyle, 0);
    }