[Solved] How to get integer of a value? [closed]KiratMarch 4, 2023Solved if you want decimal part do this . double value = 1.25; int i = (int)value; if you want to round value , do this Math.round(value); 8 solved How to get integer of a value? [closed] # android# integer# java# return-value# rounding