FAB (Floating Action Button) not showing on Canvas in GX16 u11 - floating-action-button

Since I made a Gx16 u7 version update to Gx16 u11, FAB button stop showing in the panel. I use this configuration to show a button over a Canvas Control:
enter image description here
Hope you guys can help me.
Thanks.

Try changing grid type to Flex Grid. That worked for me.

if you are working with ww pattern, and you changed the web layout of wwNameTransaction, you should Edit -> Apply Default (Web Layout).

Related

Android Studio: Part of Design View Hidden

This is a new one for me. In Design view I am unable to see the first 150 pixels of the design view window-- including the buttons/options to the left of the AppTheme button. I've tried the Pan and Zoom tool, which seems to do nothing. It shows the full view and blueprint view filling the Pan and Zoom tool interface. Any idea how to fix this:
"Window" -> "Restore Default Layout" worked for me.
I had the same problem.
Just drag the mouse where your projects are to the far left of the screen and slowly move with your mouse over to the right until you will see somewhere in the middle resize pointer- thats your design view border. Click it and move to the right and it should appear!
If you want i can try to make a gif how to do it if the above does not help.

Missing title bar after adding Default-568h#2x.png for iPhone 5 support

I created a new solution with Monotouch 6.0.2 of type MonoTouch/Universal/Master-Detail. I wrote no single line of my own code. When I start the app, all looks great.
Then I add an image of 640x1136 pixel to support the iPhone 5 named Default-568h#2x.png to the solution (type content). When I start the solution again (after a rebuild), the title bar is gone and there is no toolbar at the bottom of the screen. No navigation is possible. Please look at the attached image (left side ok, right side no really).
What's wrong here?
Thanks,
Jan

iPhone 5 (4") bottom toolbar not responding

I'm trying to modify an app to work with the new iPhone 5, 4" screen.
I've added the new launch image, "Default-568h#2x.png".
After that everything seemed good. Middle portion of my views is resizing ok.
However I've noticed that in a view where I have a bottom toolbar, the buttons on the toolbar are unresponsive. It looks ok, but tapping buttons does nothing. Same code run in simulator with 3.5" screen works fine.
Any ideas?
This view is within a navigation controller. It consists of a table view and toolbar. The tableview is set to resize height.
I had the same problem and noticed that my window.frame.size.height was still 480.0.
Solved this problem by enabling Full Screen at Launch for the MainWindow.xib file:
Steps:
Open MainWindow.xib
Select the Window element
Open the Attributes Inspector
Under Window section, enable Full Screen at Launch
There are two solution to this problem :
If you are using MainWindow follow these steps :
a. Select MainWindow.xib
b. Select 'Full Screen at Launch' from Windows option available in Attributes Inspector.
If your application doesn't contain MainWindow then just add 'Self.View.Frame = [UIScreen mainScreen].bounds' in ViewDidLoad.
I your project has MainWindow.xib then you must have to set all splash images in order to compatible you app for iPhone 5 display.
My Project wasn't using MainWindow.xib. I added the following to viewDidLoad in View Controllers of all the screens:
self.view.frame = [UIScreen mainScreen].bounds;
add
self.window.frame = [UIScreen mainScreen].bounds;
in this method:
-(BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary*)options
in your %your app name%AppDelegate.m file

skinning of Tab & Fade out effect while switching to next tab

want to change the skin of tab, where i need the Graident mix to be used, is it possible ?
how to use Animations( Fading of Old Panel to New Panel) while switching to next tab.
any help pls?
You can change skin of your tab with simple css. For example
tabName.setStyle("-fx-background-color: linear-gradient(#2EB8B8 , #2EB8B8 )");
For implementing fade in/fade out animaiton check this tutorial:
http://java-buddy.blogspot.com/2012/02/implement-fade-infade-out-animation.html

android - UI like sliding down notification bar

I want to develop a panel with animation same as notification panel. I mean to say the notification panel is a cool control where you grab and slide down the notification bar and see all the notifications.
Actually, I am having 2 UI , 1st should be shown with Button at top, when user click on that button, the 2nd UI with listview items should be slide down same as notification panel and again when user click or drag the 2nd UI at the top side, then 2nd UI should be become invisible. I hope i made clear my question.
From Christian's answer, I am trying to use a sliding drawer that will display a
list of options. I need this to expand over the current ListView on the page.
So if anybody know how to implement such layout or UI with sliding down animation then please share it.
Please suggest how to build with such control or layout? any ideas or suggestions
Thanx
Have you tried the SlidingDrawer widget?
Paresh I found a solution in this post about sliding drawers.
android misc widgets has it implemented , though it still has some flaws but it will definitely prove helpful.
Though in the same SO post CommonsWare has quoted :
...
You similarly cannot make a
SlidingDrawer that descends from the
top.
Good Luck.
You can use SlidingTray from: http://aniqroid.sileria.com to make this happen
http://aniqroid.sileria.com/doc/api/com/sileria/android/view/SlidingTray.html
Alternatively you can also use a custom PopupWindow class which is part of Android API.

Resources