Posts

Showing posts from January, 2018

Get a Pluralsight Subscription for free

Free Pluralsight Subscription acount for 3 month For getting an absolutely free 3 month subscription of most famous technical e-learning website pluralsight (https://www.pluralsight.com), you just need to create a account in visual studio online (https://www.visualstudio.com/vso). Creating a account in visual studio online is free and you don't have to pay anything for it. After creating account on visual studio online, just go to my benefit section of the website, you will be amaze of seeing the benefits you are getting for just creating a account on it. Apart for the pluralsight subscription you will get a hell lot of subscription of famous websites as well. To enjoy the benefit just click on the activate button of respective benefits you got by just signing up for visual studio online. Enjoy learning  :)

Creating a Vertical Seekbar in Android

Vertical SeekBar ( For Android Nougat and above) SeekBar is an extension of ProgressBar which has an added feature of draggable thumb. Creating a horizontal seekbar is simple. But creating a vertical seekbar, its really tough if you are new to android. But believe me its really simple, just you have to add an extra attribute "rotation" to seekbar when defining it in xml layout just like below. <SeekBar android:id = "@+id/seekBar" android:layout_width = "match_parent" android:layout_height = "wrap_content" android:rotation = "270" /> or <SeekBar android:id = "@+id/seekBar" android:layout_width = "match_parent" android:layout_height = "wrap_content" android:rotation = " 90 " /> But wait. If you want to make it compatible for every devices and every Android OS, then you have to add one more attribute to it. Along with "rotation" attribute you have to add &quo