Skip to content

Commit

Permalink
Seek bar design fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammad-Tabbara committed Feb 15, 2018
1 parent 8e912f4 commit 1113c37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class RangeSeekBar<T extends Number> extends AppCompatImageView {
public static final int HEIGHT_IN_DP = 30;
public static final int TEXT_LATERAL_PADDING_IN_DP = 3;
private static final int INITIAL_PADDING_IN_DP = 8;
private final int LINE_HEIGHT_IN_DP = 1;
private final int LINE_HEIGHT_IN_DP = 5;
private final Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
private final Bitmap thumbImage = BitmapFactory.decodeResource(getResources(), R.mipmap.slider_thumb);
private final Bitmap thumbPressedImage = BitmapFactory.decodeResource(getResources(),
Expand Down
2 changes: 1 addition & 1 deletion uielements/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
<string name="complete">Job done</string>
<string name="demo_min_label">1</string>
<string name="demo_max_label">2</string>
<string name="arrow"><![CDATA[->]]></string>
<string name="arrow"><![CDATA[]]></string>
</resources>

0 comments on commit 1113c37

Please sign in to comment.