13

Summary of preference is allowed only 2 lines . If I want to display 3 lines or more in summary . How can I do ?

kikura
  • 185
  • 2
  • 11

2 Answers2

26

You can create you Preference class by extending any existing preference:

public class LongSummaryCheckboxPreference extends CheckboxPreference
{
    public LongSummaryCheckboxPreference(Context ctx, AttributeSet attrs, int defStyle)
    {
        super(ctx, attrs, defStyle);        
    }

    public LongSummaryCheckboxPreference(Context ctx, AttributeSet attrs)
    {
        super(ctx, attrs);  
    }

    @Override
    protected void onBindView(View view)
    {       
        super.onBindView(view);

        TextView summary= (TextView)view.findViewById(android.R.id.summary);
        summary.setMaxLines(3);
    }       
}

And then in preferences.xml:

 <com.your.package.name.LongSummaryCheckBoxPreference 
    android:key="@string/key"
    android:title="@string/title"
    android:summary="@string/summary" 
    ... />

The drawback is that you need to subclass all preference types you need 3 lines summary for.

inazaruk
  • 74,247
  • 24
  • 188
  • 156
8

Using androidx.preference.PreferenceCategory I got something like that:

Java:

public class LongSummaryPreferenceCategory extends PreferenceCategory {

    public LongSummaryPreferenceCategory(Context ctx, AttributeSet attrs, int defStyle) {
        super(ctx, attrs, defStyle);
    }

    public LongSummaryPreferenceCategory(Context ctx, AttributeSet attrs) {
        super(ctx, attrs);
    }

    @Override
    public void onBindViewHolder(PreferenceViewHolder holder) {
        super.onBindViewHolder(holder);
        TextView summary= (TextView)holder.findViewById(android.R.id.summary);
        if (summary != null) {
            // Enable multiple line support
            summary.setSingleLine(false);
            summary.setMaxLines(10); // Just need to be high enough I guess
        }
    }
    
}

Kotlin:

class LongSummaryPreferenceCategory @JvmOverloads constructor(
  context: Context, 
  attrs: AttributeSet? = null
): PreferenceCategory(context, attrs) {

  override fun onBindViewHolder(holder: PreferenceViewHolder) {
    super.onBindViewHolder(holder)
    val summary = holder.findViewById(android.R.id.summary) as? TextView
    summary?.let {
      // Enable multiple line support
      summary.isSingleLine = false
      summary.maxLines = 10 // Just need to be high enough I guess
    }
  }
}
MatPag
  • 41,742
  • 14
  • 105
  • 114
Slion
  • 2,558
  • 2
  • 23
  • 27