Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Material Design

Does the new Android Material Design support old version of android such as 3.0 or 2.1? if it supports how would it look like? as a real material design or just as old design? I am about to update my app with material design theme so is there anybody who already has done this?

like image 667
Kirk Avatar asked Sep 06 '14 12:09

Kirk


People also ask

What are Android materials?

Material Design is an Android-oriented design language created by Google, supporting onscreen touch experiences via cue-rich features and natural motions that mimic real-world objects. Designers optimize users' experience with 3D effects, realistic lighting and animation features in immersive, platform-consistent GUIs.

Does Google still use Material Design?

Updated October 28, 2021: Material Design 3 is now live! Read about our latest resources, guidelines, and code in our new post. Today at I/O we unveiled Material You, a radical new way to think about design. Material You will transform design for Android, for Google, and for the entire tech industry.

How do you use materials on Android?

To change your wallpaper, long press on your homescreen and tap Wallpaper & Style. Don't exit this screen, as this is where you'll customize your Material You colors. You can also access this menu through Settings > Wallpaper & Style. Material You doesn't use your lock screen wallpaper to influence its themes.

Is Google moving away from Material Design?

Google Apps on iOS Will Move Away From Material Design and Adopt Apple's UIKit for a Consistent User Experience. Google's suite of apps on iOS and iPadOS includes Google Maps, Gmail. Google Photos, YouTube, and Good Drive. All of these apps have used Google's custom interfaces that look like Android apps.


2 Answers

As far as material design as a concept goes, yes you can do it all today. Some aspects of it would require a lot more work on your part (for example, imitating the new action bar design guidelines), whereas some parts are a lot more simple (e.g. the new guidelines for content spacing and colors).

There are also some libraries available to help you with this. There are many third party libraries out there that support the concept of "cards" such as Cards UI for Android and Cardslilb, and there is a library for the Floating Action Button.

As far as the Material theme goes for more or less automatically making your app "Material," no, there is no support library implementation available right now. What you see on the market at the moment is mostly done from scratch. I recommended holding off until Android L is officially released. The new versions of the support libraries will include support for at least some of this functionality (such as CardView).

like image 140
Bryan Herbst Avatar answered Sep 30 '22 17:09

Bryan Herbst


You can use v7 Appcompat library and the Design Support Library to support Material design on pre-Lollipop Android versions.

like image 24
imgx64 Avatar answered Sep 30 '22 17:09

imgx64