Merge "[Settings] Limit height of TextView when text too long"

This commit is contained in:
Bonian Chen
2023-01-11 10:17:51 +00:00
committed by Android (Google) Code Review
8 changed files with 95 additions and 74 deletions

View File

@@ -33,6 +33,11 @@ public class GearPreference extends RestrictedPreference implements View.OnClick
protected boolean mGearState = true;
private OnGearClickListener mOnGearClickListener;
public GearPreference(Context context, AttributeSet attrs,
int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
}
public GearPreference(Context context, AttributeSet attrs) {
super(context, attrs);
}