Adding Menu Items using the BlackBerry WebWorks SDK is well documented.
http://supportforums.blackberry.com/t5/Web-and-WebWorks-Development/Adding-Menu-Items-using-the-BlackBerry-WebWorks-SDK/ta-p/516885
My Question how to add a Submenu-Item?
Creating a submenu is documented only for developing UIApplication
http://docs.blackberry.com/en/developers/deliverables/17971/Submenus_6_0_1133451_11.jsp#BP_Implementing_submenus_6_0_1133452_11
-
-
That cannot be done in WebWorks with the available API's, however, you could always create a custom extension if it's something that you really need for your application.
Check-out this documentation if you're interested: https://developer.blackberry.com/html5/documentation/using_javascript_extensions_1866976_11.html
Related
I have created one project using third party SDK.
I have done some changes in SDK and improves it more.
I want to separate out SDK in such a way that any one can use my SDK in there project.
just as same I have taken it before from somewhere else and used in my project
Is there any standard way to separate out SDK from App?
Probably you took it on a github, if not - let's anyway take github as an example.
First, when you did improves some code of third party library / sdk - i hope you still holding all the code in the same classes or at least connected classes, other way it will hard to work for that code. So, you should just take the code you improved and to contribute. Go over link it will describe you the process of how to support projects with your code.
Is it possible to create an iOS library or framework using libgdx (RoboVM) that can be imported into Xcode?
Background:
One of my colleagues has created a 3D visualisation app as a libgdx project for android and windows desktop. It can be compiled to run on iOS using RoboVM. However, I would like to wrap extra native user interface elements around it using Xcode. I know its possible to build the user interface programmatically via RoboVM but I would be keen to investigate if its possible to bring the existing work into Xcode. I don't need to edit the 3D visualisation component but add extra GUI elements around the 3D Vis window. I thought compiling the libgdx (RoboVM) code to a framework or library might be a solution that could be imported?!
Yes you can do it.
All you need to create a method, say initRoboVM(), This will be called by your code when you want to initialize libgdx. You'll need to pass the app path in, which you can hardcode when you're testing.
initRoboVM() will need some modifications, namely it should not call your Java app's main method, well, at least, that's what well behaving libraries should not do IMO. It should also not call rvmShutdown.
You can get further information from here
Thanks :)
I asked the RoboVM team directly. Their answer: It's not a native function, but it certainly can be done.
The complete message...
Hi,
Sorry for the late reply. This use case is not something we're going
to do now. It is possible though if you're prepared to do some
patching of RoboVM. Search the RoboVM Google Group and you should find
others who have managed to get this working.
We get this request every know and then so we will add support for
this eventually.
Regards, Niklas
For generating PDF files we can use Core Graphics. Similarly is there any framework / class that can be used for generating .ppt (power point presentation) files via code ? Or is there any third party framework for this purpose.
There's no in-built Apple API, and I've never heard of a third-party framework for this.
Seems there are still no open source solutions for this for iOS platform. Aspose seems to have something and another commercial that pretty recently emerged - libpptx.com, at least it provides some generic functionality to craft pptx
I am trying to get a Visual Studio's gridview like control for Monotouch development. I had a look at AQGridView. Does AQGridView works with Monotouch? Is there a library for AQGridView which I can add to my monotouch project?
You should be able to use about any Objective-C library with MonoTouch.
You will just have to setup a MonoTouch binding project in order to use it.
Here is a link to another answer of mine that goes over it: OpenFeint with MonoTouch
Also read the Xamarin docs: http://docs.xamarin.com/ios/advanced_topics/binding_objective-c_types
Another UI library to look at is Three20. It's used in a lot of apps, like Facebook and Dropbox, etc.
I have created MonoTouch bindings for the AQGridView that should meet your needs.
https://github.com/theonlylawislove/MonoTouch.AQGridView
Just include the .csproj inside of your solution and add a reference to it.
Does anyone have any idea on what framework Facebook App, and Flixster App are using to create the custom detail view look that slides on the side. I have looked all over and havent found anything, but thought that it may be worth asking.
Facebook traditionally implements their own UI and releases much of it as open source code in the Three20 library. However, it does not look like Three20 has gotten an update since the new Facebook was released.
Here is another open source implementation that uses this functionality: https://github.com/mystcolor/JTRevealSidebarDemo
Given the vast amount of engineering talent Facebook has, I would be surprised if they were using some 3rd party framework for this functionality.
Facebook released their UI tools for iOS on Github. It's called three20. You can check out the source here: https://github.com/facebook/three20.