Simplified code
This commit is contained in:
parent
9a156e424f
commit
a350247d00
1 changed files with 4 additions and 4 deletions
|
@ -243,13 +243,13 @@ public class AppModeDialog {
|
||||||
}
|
}
|
||||||
|
|
||||||
static private ToggleButton createToggle(Context ctx, LinearLayout layout, ApplicationMode mode, boolean drawer){
|
static private ToggleButton createToggle(Context ctx, LinearLayout layout, ApplicationMode mode, boolean drawer){
|
||||||
int left = 0;
|
int margin = 0;
|
||||||
if (drawer) {
|
if (drawer) {
|
||||||
left = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 5, ctx.getResources().getDisplayMetrics());
|
margin = 5;
|
||||||
} else {
|
} else {
|
||||||
left = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 10, ctx.getResources().getDisplayMetrics());
|
margin = 10;
|
||||||
}
|
}
|
||||||
|
int left = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, margin, ctx.getResources().getDisplayMetrics());
|
||||||
int metrics = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 64, ctx.getResources().getDisplayMetrics());
|
int metrics = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 64, ctx.getResources().getDisplayMetrics());
|
||||||
ToggleButton tb = new ToggleButton(ctx);
|
ToggleButton tb = new ToggleButton(ctx);
|
||||||
tb.setTextOn("");
|
tb.setTextOn("");
|
||||||
|
|
Loading…
Reference in a new issue