Posts

Showing posts from February, 2018

Custom Progress bar in Xamarin Forms iOS

Image
Hi Friends , Today I would like to create a custom  progress bar as below .  Create a project as Xamarin forms . 1. Create a class name  CustomProgressBar and three bindable property  ProgressValueProperty (For Indication Progress)   public   static   readonly   BindableProperty   ProgressValueProperty  =              BindableProperty . Create < CustomProgressBar ,  double >            ( p  =>  p . ProgressValue ,  double . NaN ,  BindingMode . TwoWay ,  propertyChanged : ( bindable ,  oldValue ,  newValue ) =>             {                   var   control  = ( CustomProgressBar ...

How to debug Android Application with Visual Studio or Android Studio without USB ( Wireless / WiFi debugging)

Image
Dear friend, I would like to tell you debug your Android  mobile without  USB cable. Both mobile and your PC must be in same network. Get IP address of your Mobile :- You can find your Mobile by tabbing on your mobile's WiFi network or open About Phone and Status  from Setting Menu.                                 2.   Connect your phone with USB cable once.          3. Go to your SDK location . If you don't know location of SDK , Open SDK Manager from                   Visual or Android Studio .Where you can find SDK location.                                                 4. Open SDK location from Command Window and run below commands     ...