Hello, everyone! I'd like to share theme development for Android Studio .
Bug Fixes
dependencies {
// don t forget to change 25.3.1 to your api lvl mine is 25.3.1
compile 'com.android.support:cardview-v7:25.3.1'
}
To
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:cardview-v7:26.1.0'
he purpose of the cardview is to allow child views to be positioned in a grid arrangement. The cardview essentially consists of a number of invisible horizontal and vertical grid lines that serve to divide the layout view into a series of rows and columns, with each intersecting row and column forming a cell which can, in turn, contain one or more views.
Here is The Final Result
Project : https://drive.google.com/file/d/1dECnWfBKk4hP4HwG-CKs7BvCrHLDYLus/view?usp=sharing
Project : https://drive.google.com/file/d/1dECnWfBKk4hP4HwG-CKs7BvCrHLDYLus/view?usp=sharing
The grid lines are referred to as indices, which are numbered starting at 0 for the line at the leading edge of the layout.
Posted on Utopian.io - Rewarding Open Source Contributors