Android. How to disable on click tab in Viewpager -


android. how disable on click tab in viewpager?

below there tabs:enter image description here

in oncreate() add buttons give them ids , variables, attach disabled when want.

button button1, button2; @override public void oncreate (bundle savedinstancestate) {      // oncreate(); stuff      button1 = (button)findviewbyid(r.id.button_problem_type);      button2 = (button)findviewbyid(r.id.button_picture_type); } @override public void onactivitycreated( bundle savedinstancestate ) {      super.onactivitycreated( savedinstancestate );      button1.setenabled(false);      button2.setenabled(false); } 

Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -