android - Dynamically added RatingBar does not show up -


i adding ratingbar linear layout dynamically. rating bar not visible of phone visible in tablet. following code creating ratingbar.

    view newwidget = new ratingbar(appcontext);     linearlayout.layoutparams layoutparams = new linearlayout.layoutparams(viewgroup.layoutparams.wrap_content,                 viewgroup.layoutparams.wrap_content);     layoutparams.gravity = gravity.center_horizontal;     newwidget.setlayoutparams(layoutparams);     ((ratingbar) newwidget).setstepsize(1.0f); 

try below code:

ratingbar ratingbar = new ratingbar(context, null, android.r.attr.ratingbarstylesmall); 

try set style rating bar before loading view runtime. hope work you. thanks!!!


Comments

Popular posts from this blog

Hatching array of circles in AutoCAD using c# -

ios - UITEXTFIELD InputView Uipicker not working in swift -

Python Pig Latin Translator -