I want design a metro style UI for my android app - microsoft-metro

I want to design metro style UI for my android app. How to do it? is there any shortcuts? I tried to make one using Image views. How to give effects for it? Is there any other way to do it? Please help me....

Try the Metro UI CSS by Sergey Pimenov. Check http://metroui.org.ua/

Related

Flutter, preview of app and design plugin?

Why flutter does not contain a preview of the app while we are programming it?
Is there any design plugin to be able to drag and drop widgets like in android studio for android apps?
It is difficult to build an interface from code without having a preview of the application.
Thanks!!
Disclaimer: This is not a first party tool.
I think what you're looking for is this:
https://flutterstudio.app/
It's a drag and drop editor for building Flutter layouts.
My personal recommendation is to use an emulator and learn how all the layout widgets work. Thanks to hot-reload it's super easy to experiment and create what you're looking for.
Well, you have emulator. What else do you want to preview your app?
Also on dart dev tools, you have a render tree and widget inspector. There is an option called show debug paint that I highly use to see the size and boundaries of widgets, and many other options I didn't discover yet.
You can use flutter studio if you want to create your ui by dragging and dropping widgets but I didn't use it.
And I just found that.
I really didn't understand what you mean by previewing.
For example, when you are starting and have a lot of examples, you might not remember what they look like.
I might suggest that you save a screenshot in your assets, so you can then remember what the app is about, without running the code.

GWT Material Design - How to disable change data grid layout on mobile devices?

I use GWT Material Design version 1.6.2. My data grid layout looks fine and I want to keep that layout on mobile devices.
So I don't want to see something like that in my application.
Any ideas how to do that? Thanks.
Solved.
Just do not need to set css style "responsive-table" on data greed.
For example change :
dataGrid.setStyleName("hoverable responsive-table");
to
dataGrid.setStyleName("hoverable");

What is the simplest and the fastest way to make manual for the iPhone app?

I have developed some app and want to add some manual for it. I mean, that there is button "Info" in the main menu of the app, so pushing this button, will appear that manual with text and images. I just need advice for the optimal solution, thanks.
I recommend using a UIWebView for this. It allows the simplest way to customize the view fully in terms of fonts, images, layout, etc. Just write an html file, add it to the project, and set it as the page for the UIWebView.

Accordion menu style in iphone using monotouch

Can we create an Accordion menu style for the iPhone using MonoTouch?
MT relies on native iOS libraries for it's UI. If a UI element exists in iOS, then you should be able to use it in MT. As far as I know, "Accordion Menu" is not something that iOS supports.
However, this sounds like a common HTML/jQuery type control, so you may be able to achieve it by using UIWebView in your app.

Does anyone know where I can find iPhone search bar style?

I'm developing a site with jQTouch, but it doesn't have style for a search bar. Has someone come across a library or css for the iPhone search bar like the image below?
There is a searchbar in the iWebkit library, you can use that to creata your own.
jQuery Mobile provides a search input that does exactly that:
http://jquerymobile.com/demos/1.0a4/#docs/forms/forms-search.html