1

How to change seekbar progress Position by changing value in the EditText?

view story
linux-howto

http://stackoverflow.com – I want to change the seekbar progress position by changing the value in EditText dynamically. please help me out from this issue . <EditText android:id="@+id/editText1" android:layout_width="120dp" android:layout_height="wrap_content" /> <SeekBar android:id="@+id/seekBar1" android:layout_width="match_parent" android:layout_height="wrap_content" android:max="4990000" android:progress="10" /> And here is the java code seekbar1 = (SeekBar) findViewById(R.id.s (HowTos)