aboutsummaryrefslogtreecommitdiff
path: root/src/com/android/tv/ui/sidepanel/CompoundButtonItem.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/tv/ui/sidepanel/CompoundButtonItem.java')
-rw-r--r--src/com/android/tv/ui/sidepanel/CompoundButtonItem.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/com/android/tv/ui/sidepanel/CompoundButtonItem.java b/src/com/android/tv/ui/sidepanel/CompoundButtonItem.java
index c2746937..cc09affb 100644
--- a/src/com/android/tv/ui/sidepanel/CompoundButtonItem.java
+++ b/src/com/android/tv/ui/sidepanel/CompoundButtonItem.java
@@ -19,7 +19,6 @@ package com.android.tv.ui.sidepanel;
import android.view.View;
import android.widget.CompoundButton;
import android.widget.TextView;
-
import com.android.tv.R;
public abstract class CompoundButtonItem extends Item {
@@ -44,8 +43,8 @@ public abstract class CompoundButtonItem extends Item {
mMaxLine = 0;
}
- public CompoundButtonItem(String checkedTitle, String uncheckedTitle, String description,
- int maxLine) {
+ public CompoundButtonItem(
+ String checkedTitle, String uncheckedTitle, String description, int maxLine) {
mCheckedTitle = checkedTitle;
mUncheckedTitle = uncheckedTitle;
mDescription = description;
@@ -73,8 +72,10 @@ public abstract class CompoundButtonItem extends Item {
descriptionView.setMaxLines(mMaxLine);
} else {
if (sDefaultMaxLine == 0) {
- sDefaultMaxLine = view.getContext().getResources()
- .getInteger(R.integer.option_item_description_max_lines);
+ sDefaultMaxLine =
+ view.getContext()
+ .getResources()
+ .getInteger(R.integer.option_item_description_max_lines);
}
descriptionView.setMaxLines(sDefaultMaxLine);
}