Skip to content
Snippets Groups Projects
Commit 616c3808 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

#15495: Place current value on top of seekbar

parent 74eccf3a
No related branches found
No related tags found
No related merge requests found
......@@ -170,12 +170,6 @@ public class PrefManagementFragment extends PreferenceFragment
title.setTextColor( textColor );
layout.addView( title );
seekbar = new SeekBar( ctx );
seekbar.setId( android.R.id.progress );
seekbar.setMax( max );
seekbar.setOnSeekBarChangeListener( this );
layout.addView( seekbar );
summary = new TextView( ctx );
summary.setId( android.R.id.summary );
summary.setSingleLine();
......@@ -183,6 +177,12 @@ public class PrefManagementFragment extends PreferenceFragment
summary.setTextColor( textColor );
layout.addView( summary );
seekbar = new SeekBar( ctx );
seekbar.setId( android.R.id.progress );
seekbar.setMax( max );
seekbar.setOnSeekBarChangeListener( this );
layout.addView( seekbar );
return layout;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment