ANDROID STUDIO: CardView Layout
- ANDROID STUDIO Card View Layout ANDROID STUDIO: CardView Layout 1) Run Android Studio 2) Create a new Android Studio Project 2) Create New Project 3) Update Build.Gradle (Module:App) File 4) Edit Layout File 5) Rebuild Project 6) Card View Layout Done. 1) Run Android Studio 2) Create a new Android Studio Project 2) Create New Project 3) Update Build.Gradle (Module:App) File Edit cardview compile codes in dependencies section: compile 'com.android.support:cardview-v7:21.0.+' 4) Edit Layout File <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" a...