Hiii
i am new to J2me Apps,i have a requirement to develop tabs creation in my j2me (java)MIDP Programming,i come to know through google,j2me polish is better option to create tabs,i want to append LCDUI list screen to j2me polish's Tab1 and Tab2 etc.....
cany any one sample progam with mixing these two,i dont in my app where to create css file and how to combine MIDP Program with j2me polish,I have searched in google for Example Program's,but I am not able to get the samples?
You can not add LCDUI List in a Polish tabbed pane.
To better understand how to change your screens from LCDUI to Polish, please go through the tutorial available at http://www.enough.de/products/j2me-polish/documentation/tutorial/
Related
Is there a way to change the text in iOS and Android for the two buttons which showing up inside the Picture Preview screen after you take a photo using MvvmCross PictureChooser plugin?
I have searched on it but I can't seam to find anything.
Thank you!
There's no way provided by MvvmCross to do this.
The source code to the picture chooser is in https://github.com/MvvmCross/MvvmCross/tree/v3.1/Plugins/Cirrious/PictureChooser
On Droid, this uses the standard ActionGetContent intent - https://github.com/MvvmCross/MvvmCross/blob/v3.1/Plugins/Cirrious/PictureChooser/Cirrious.MvvmCross.Plugins.PictureChooser.Droid/MvxPictureChooserTask.cs#L37
On iOS, this uses the standard UIImagePickerController - https://github.com/MvvmCross/MvvmCross/blob/v3.1/Plugins/Cirrious/PictureChooser/Cirrious.MvvmCross.Plugins.PictureChooser.Touch/MvxImagePickerTask.cs
So to customise these, you'll need to replace this code or to look to see if there are any "standard" ways on each platform.
i have a Requiremenmt to create my Screen as Screen Tabs,when tab1 is Clicked Tab1 related List Screen Should be Displayed,when tab2 is Clicked tab2 related List Screen Should be Displayed?How Can we achieve this in j2me java,as i am new to j2me?
You can not perform this directly on native Java ME Code. For such requirement you have an external GUI builder like J2mepolish. J2me polish uses CSS to design such gui. Have a look at to J2mepolish's tabbled form.
I am very new in j2me. I want to design following type layout and components.
Mean I want to arrange my items in gridview. And after clicking on each item I will move to another form.
I am using simple lcdui. Please suggest me how can I do this. Means how can I arrange these items in gridview and what items should I use here buttons or something else.
You may provide me some suitable links.
In J2ME you have two options for UI: Form and Canvas.
Forms are a very simple way to display information without dealing with the graphical side of things, where Canvas is a blank screen and you need to draw the objects and their behaviors.
There is a third way: the guys at Sun has created a framework called (LWUIT which stands for Light Weight UI Toolkit). This toolkit provides the simplicity of Forms and the UI control of Canvas.
Hope i helped.
I want to create a view/screen/activity in Android which has table containing ten columns. As ten columns would not adjust width-wise in the screen (would not be in readable format), I am showing 3 columns at once.
I want to integrate a feature in the app where in if the user slids/flings on the table from right to left, the other 3-4 columns should be visible.
This is implement in Andry Birds. If you slide the screen from right to left, remaining part of the screen is visible.
This is called panoramic view in Iphone. Can I implement this in Android.
May be this will help http://code.google.com/p/panoramagl-android/
If you want to create panoramic views on Android, you can use PanoramaGL library. The 0.1 r1 version was released today, please check http://code.google.com/p/panoramagl-android/ and https://code.google.com/p/panoramagl-android/wiki/UserGuide.
Google provides VR View
VR view allows you to embed 360 degree VR media into websites on
desktop and mobile, and native apps on Android and iOS. This
technology is designed to enable developers of traditional apps to
enhance the apps with immersive content.VR view supports mono and stereo 360 images and videos. Images and video need to be stored in the equirectangular-panoramic (equirect-pano) format, which is a common format supported by many capture solutions.
I used DateField in a Form. When I try to select a date it opens up calendar functionality provided by cellphone.
As you know the UI features in j2me are not that great. I looked at third party libraries to design fancy UI. So far I have not found any api which makes DateField fancy. Is anybody aware of any API which supports DateField?
Using the phone's native control for this is exactly what j2me is supposed to do.
The system has clear advantages when changing the phone language, especially when the alphabet isn't in basic ASCII characters.
If you want to control exactly the way the calendar looks, you'll need to draw it yourself in a Canvas and deal with user input, screen size and localization issues yourself.
In general, you might want to look into the LWUIT library for an intermediary solution between fixed native controls and direct screen access.