Android SeekBar can't be full width even set padding 0 in AppCompat 23.1.0
finally, I just have a sudden thought. why not try modify it by java code. It works! following is the sample code:
protected void initViews(Context context) {
LayoutInflater.from(context).inflate(getLayoutResId(), this);
ButterKnife.bind(this);
// set style, just once
seekBar.setProgress(0);
seekBar.setMax(0);
seekBar.setPadding(0, 0, 0, 0);
// ...
}
Set this attributes in XML
android:paddingStart="0dp"
Try adding the parameters paddingStart
and paddingEnd
to 0dp
in the xml file. If your app is compatible with Rtl you will need to add those in order to visualize the seekBar with no padding otherwise it will show with padding even if using it in a Ltr language.