PreferenceWithLongSummary.java 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /**
  2. * ownCloud Android client application
  3. *
  4. * Copyright (C) 2014 ownCloud Inc.
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2,
  8. * as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. package com.owncloud.android.ui;
  19. import android.content.Context;
  20. import android.preference.Preference;
  21. import android.text.TextUtils;
  22. import android.util.AttributeSet;
  23. import android.view.View;
  24. import android.widget.TextView;
  25. public class PreferenceWithLongSummary extends Preference {
  26. public PreferenceWithLongSummary(Context context) {
  27. super(context);
  28. }
  29. public PreferenceWithLongSummary(Context context, AttributeSet attrs) {
  30. super(context, attrs);
  31. }
  32. public PreferenceWithLongSummary(Context context, AttributeSet attrs, int defStyle) {
  33. super(context, attrs, defStyle);
  34. }
  35. @Override
  36. protected void onBindView(View view) {
  37. super.onBindView(view);
  38. TextView titleView = (TextView) view.findViewById(android.R.id.summary);
  39. titleView.setSingleLine(true);
  40. titleView.setMaxLines(1);
  41. titleView.setEllipsize(TextUtils.TruncateAt.MIDDLE);
  42. }
  43. }