ina*_*ruk 22
您可以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);
}
}
Run Code Online (Sandbox Code Playgroud)
然后在preferences.xml:
<com.your.package.name.LongSummaryCheckBoxPreference
android:key="@string/key"
android:title="@string/title"
android:summary="@string/summary"
... />
Run Code Online (Sandbox Code Playgroud)
缺点是您需要子类化您需要3行摘要的所有首选项类型.
使用androidx.preference.PreferenceCategory我得到了类似的东西:
爪哇:
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
}
}
}
Run Code Online (Sandbox Code Playgroud)
科特林:
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
}
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
4498 次 |
| 最近记录: |