i want to translate/Flip view/ manager in BlackBerry when i press Next Button or Previous Button which available in status Bar, i m attaching my screen. Does any body have idea please send me
Thanx in advance..
When u click on your Next Prev Button you have to change your Bitmapfield image using bitmapfield.setBitmap("your new image");
You can use net.rim.device.api.ui.extension.component.PictureScrollField to achieve the desired effect
Related
I need help.
I have Intwgrate a Lottie but I'm unable to see the text which is in the button which is need to display after expanding the button.
So does LotAnimationView supports the text rendering?
Thanks in advance .
The Lottie Team haven't yet implemented support for text layers. But you can right click on your text layer and select "Create shapes from text" and animate that shape layer.
For more details on what is supported go to:
http://airbnb.io/lottie/supported-features.html
I want to disable the back button text in Xamarin iOS,
along with the button itself. I already disabled the back button itself but the text is left.
Does anyone know of any way to disabling the text as well?
Thanks
You can accomplish this in two ways:
NavigationItem.SetHidesBackButton(true, false);
or
NavigationItem.BackBarButtonItem = null;
If you use the second solution, then you would have to recreate the button if you ever want to make it visible again.
With Navigation Page:-
NavigationPage.SetBackButtonTitle(this, ""); //Empty string as title
or hide the Back button with:
NavigationPage.SetHasBackButton(this, false);
I am trying to replace the bar button items in my toolbar with images. I was able to select image in the attribute inspector. But now the text is replaced with image. Is there anyway i can keep both text and image (text should be below image)
What i have is this.
Please click to see image
What i am looking for is something like this
Please click to see image
Thanks for helping.
You can place the image in the selected image attribute
And you can place the text in the bar item title attribute
Something like this
This can be done when you do to the navigation controller for that particular tab.. Like in your case navigation controller for item 1
Hope that helps
I have an Edit Menu in my UITextView selection to play an audio as shown below (see the screen shot). After i tap on play the Edit menu is hidden (I know its Apple's default behavior). I need to to retain the Edit menu even after tapping the play item and also want to change the text from play to stop. I hope some one can help me. Thanks in advance!
I need to display the context menu when clicked on a rich:dataTable column,and need to show a rich:popupPanel when clicked on a menu item. I could able to get the popup but it is disappearing instantly.Does anyone have an idea on this?
I am using rich:dropDownMenu (RichFaces 4.0.0.Final).
Thanks in Advance.
If you have a domElementAttachment="parent" in your popup, than change it to domElementAttachment="form". If you still have the problem I can insert the full code here.