Merge branch 'master' of github.com:TwidereProject/Twidere-Android

This commit is contained in:
Mariotaku Lee 2015-11-03 17:56:24 +08:00
commit 1359957e00
1 changed files with 11 additions and 0 deletions

View File

@ -4,6 +4,8 @@ import android.content.Context;
import android.content.SharedPreferences;
import android.preference.CheckBoxPreference;
import android.util.AttributeSet;
import android.view.View;
import android.widget.TextView;
public class AutoFixCheckBoxPreference extends CheckBoxPreference {
@ -31,4 +33,13 @@ public class AutoFixCheckBoxPreference extends CheckBoxPreference {
}
}
@Override
protected void onBindView(View view) {
super.onBindView(view);
TextView textView = (TextView) view.findViewById(android.R.id.title);
if (textView != null) {
textView.setSingleLine(false);
}
}
}