[Solved] How to set second label on InfoWindow xamarin map

You could get the CustomPin with the GetCustomPin method in the custom renderer like the sample in your above link. CustomPin GetCustomPin(Marker annotation) { var position = new Position(annotation.Position.Latitude, annotation.Position.Longitude); foreach (var pin in customPins) { if (pin.Position == position) { return pin; } } return null; } and in your public Android.Views.View GetInfoContents(Marker marker) … Read more

[Solved] How call method from Fragment in Activity?

With getActivity() you will get the activity instance, cast it to your activity name and call function from fragments. Assuming activity name as MainActivity ((MainActivity)getActivity()).myFuncInActivity(): 4 solved How call method from Fragment in Activity?

[Solved] How to design tilted diagonal or rounded rectangle drawable resource file for login screen background?

Finally i got the solution : <vector xmlns:android=”http://schemas.android.com/apk/res/android” android:viewportWidth=”500″ android:viewportHeight=”749″ android:width=”625dp” android:height=”936.25dp”> <group android:scaleX=”0.1″ android:scaleY=”-0.1″ android:translateY=”749″> <path android:pathData=”M439 7416C282 7361 169 7248 113 7090l-23 -65 0 -1751c0 -1693 1 -1753 19 -1806 35 -101 99 -185 184 -241 57 -38 90 -50 442 -162 132 -42 701 -224 1265 -405 564 -180 1084 -346 1155 … Read more

[Solved] Getting time of special timezone in UNIX-time format. Android [duplicate]

I just needed adding an offset of my timezone. Function below was exactly what i wanted! public static long getCurrentTimeInUnixFormat(){ return (System.currentTimeMillis() + TimeZone.getTimeZone(“GMT+3”).getOffset(System.currentTimeMillis())) / 1000; } 1 solved Getting time of special timezone in UNIX-time format. Android [duplicate]

[Solved] setImageBitmap() Throwing nullPointerExceprion [duplicate]

This is happening because you are calling below function setContentView(R.layout.activity_main); Views are not being initialized. Replcae your code with below code. @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); try { BitmapFactory.Options bitmapOptions = new BitmapFactory.Options(); bitmapOptions.inSampleSize = 2; Bitmap imageBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.img, bitmapOptions); //imageView for referencig imageView of layout file ImageView imageView=(ImageView)findViewById(R.id.imageView1); imageView.setImageBitmap(imageBitmap); … Read more