blob: 670bc4bf5133988b9b8e019a17b2dacdbf8b77c3 [file] [log] [blame]
package com.example.android.multiproject.library;
import android.content.Context;
import android.widget.TextView;
class PersonView extends TextView {
public PersonView(Context context, String name) {
super(context);
setTextSize(20);
setText(name);
}
}