Merge "[Settings] Fix crash" into main
This commit is contained in:
commit
bedfb69f67
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