How to make customised android button shown in the below image? - android

By using css or jquery it's easy to bring this grouped buttons. But in android native application how to design a xml file to bring grouped buttons like this, without using tabWidget method (i.e)tab layout.

That's a segmented radio button. There are various solutions but this is a good one: https://github.com/makeramen/android-segmentedradiobutton

Related

advanced Android menu

Hi Everyone
I'm new in android and i'd like to do a menu for an application.
I want to replicate the menu style of this game that has different section
http://i.giphy.com/l4Jz4PbvjJEZHZn8c.gif
I have 3 different xml layout that i want to show in my horizontal style menu capable of swiping from a layout to another.
I have heard i could use something called horizontal ListView but i don't really know how to use it.
How do i do?
try Sliding tab Layout. Its the same function just need to edit the codes for different design

Android- Can we create material views programmatically?

Is it possible to create Material Design views (like button, textView, ...) programmatically?
like
AwesomeButton btnTest=new AwesomeButton (context);
i want full featured library like rey5137 but without XML usage and support old android(maybe Android 2.3 and up).
material design is all about different combinations of items in xml. you cannot design without xml. it is not java swing don't forget, whatever you want to design their base should be on drawable or layout folder, not on java code
update for the edited question
in your example, you say AwesomeButton, in order to have something like this, you need to have a library, which also has xml design file including all those fancy visual effects. If you don't design how are you supposed to create a pre-designed button.
chamran, you are making it complicated my friend, you can't design a button via code, you have to have a xml file for your own custom materials. Even the default button has a xml.

Is there a native button group element?

I need a horizontal group of two buttons. It should be, or at least look, native as I want my app to look completely native. I'm after the same style as the button group of the google maps app:
Does anybody know how I can achieve this?
What makes you believe those buttons are native? :)
Actually those controls are custom RadioButtons enclosed in a RadioGroup.
Regarding the native buttons... usually these buttons have a different look and feel on different Android versions. For example on Android 2.2 the predominant color is white/gray, on Android 4.0 is blue.

How to design a iPhone like menu/button in android at the bottom?

I have googled this, most of the solutions are using:
1.TabHost with customized style which would cover the separate line between each tab to archive the requirement.
2.On the android developers website, there is a article is using Merge layout to put 2 buttons on top of the background image kind of archive what I want.(http://developer.android.com/resources/articles/layout-tricks-merge.html)
3.What about using button but style the looking like the example below? I don't need the selection, cause each item in the menu will be a button, which takes the user to another page.
I am wondering is there any other solutions apart from these two?
This is something want:
I don't need the menu likes a tab which has selected and unselected, they are better like a button always displaying in certain screen(activity).
Thank you.
You can use simple buttons, and provide any custom background for it. For such simple form as on your screenshot look for this link.
But #Janne write right thing - you should be very careful with transplanting controls from another platforms.

Android equivalent of iPhone grouped cell layout

I have this screenshot from my iPhone; I'm trying to make the same layout in Android. I finished the buttons on the left, but now I'm working on the group of four white buttons on the right.
I think they are styled as UITableViewstyleGrouped.
They remind me of segmented layouts but segmented layouts are basically radio buttons, while these are not.
Is there an android version of these?
You can use a custom ListView.
More about ListView here or for a custom ListView tutorial check this.

Categories

Resources