فهرست منبع

OC-3381: (Fix bug) In preferences, the 'instant upload via WIFI' field is multiline but only use two lines instead of three

masensio 11 سال پیش
والد
کامیت
d10c10532f
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      src/com/owncloud/android/ui/CheckBoxPreferenceWithLongTitle.java

+ 1 - 0
src/com/owncloud/android/ui/CheckBoxPreferenceWithLongTitle.java

@@ -42,5 +42,6 @@ public class CheckBoxPreferenceWithLongTitle extends CheckBoxPreference{
         TextView titleView = (TextView) view.findViewById(android.R.id.title);
         titleView.setSingleLine(false);
         titleView.setMaxLines(3);
+        titleView.setEllipsize(null);
     }
 }