[Settings] Fix crash
Bug: 366361808 Change-Id: I3f804685e215ed07b71a5efd51c9da9c5b978279 Test: manual Flag: EXEMPT bugfix
This commit is contained in:
parent
2f554f2655
commit
bc3f736162
1 changed files with 6 additions and 0 deletions
|
|
@ -21,6 +21,8 @@ import android.util.AttributeSet;
|
|||
import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.preference.PreferenceViewHolder;
|
||||
|
||||
import com.android.settings.R;
|
||||
|
|
@ -35,6 +37,10 @@ public class TickButtonPreference extends TwoTargetPreference {
|
|||
super(context);
|
||||
}
|
||||
|
||||
public TickButtonPreference(@NonNull Context context, @Nullable AttributeSet attrs) {
|
||||
super(context, attrs);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onBindViewHolder(PreferenceViewHolder holder) {
|
||||
super.onBindViewHolder(holder);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue