@@AwsRh Can you please tell me if the github repo is the android project imported directly from android studio or else if you have made the folders by yourself, cause I am making this app and tried to do code as you instructed but seems to be some error in it so I wanted to know if I can clone the repo and run it directly??
Thank you very much for this video. I am at last semester of my master's degree and currently working as a intern in private company and i am working on commercial android app & this video helped me alot. Subscribed to your channel keep doing this amazing work. 👍 Thanks again 👏👏
Great video... Took me 3 days to find this video on the UA-cam... Better add title 'this is using java' cause when we search only thing I see is XML videos in the search result
About 1:34 For a newer version of android studio, you should write: implementation 'com.android.support:cardview-v7:28.0.0' implementation 'com.android.support:recyclerview-v7:28.0.0' on build.gradle it should look like this: dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.0.2' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' implementation 'com.android.support:cardview-v7:28.0.0' //Card View implementation 'com.android.support:recyclerview-v7:28.0.0' //Recycler View testImplementation 'junit:junit:4.12' androidTestImplementation 'androidx.test:runner:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1' } Pay Attention! This is true only to this date, 04.25.2019 You might need to check here for a newer version: developer.android.com/reference/android/support/v7/widget/CardView (I'll try to find more stuff like this and share here)
2:00 Also: Instead of writing android.support.widget.RecyclerView you should write: androidx.recyclerview.widget.RecyclerView Pay attention to androidX!!
if i want to distribute the space between the three elements in each row evenly how can i do that? i try to set android_width="0dp" and android:layout_weight="1" in cardview_item_book.xml but it doesn't work
Mind Blowing Can you make a video on same topic but different functionality After making the home screen book layout then when i click on any book then open a new activity where all the chapters are listed in linear layout . when I click on any chapter then start download pdf file from server with progress bar in internal storage and open in new activty. Downloaded pdf file shouldnot show in other app. this should be only content of this app. After uninstalling this app all downloaded pdf are also deleted.
You're remarkable, and your work is amazing!!! Wow thanks so much for this. How complex is it to add a drawer(side panel) to this approach? Any changes to be applied?
Above code works nicely.I have a problem.I want to separate activities for separate books.It means when click one book it should open with it's pdf book viewer....How to do that...? please explain...or give me the code...Thank you
amazing ... i tried this on android 10 worked great but when i tried on android 5.1 ( Xperia z ultra ) device it was laggy and very very and un responsive any lead ?
I always watch your video well. By the way do you know how to use CardView to move pages? I've been struggling with this problem for a week. Please help me. TT
it showed Unsupported Modules Detected: Compilation is not supported for following modules: Recyclerview2, app. Unfortunately you can't have non-Gradle Java modules and Android-Gradle modules in one project.
Nice Tutorial. I have one question though: How can you center the adapter so that the items in the gridLayoutManager/recyclerView are all positioned correctly?
--how did you get your recycler view data (i used drawable resources image for testing purpose) in real world app you would get your data from an API -- use Glide or Picasso to load the images into your views -- if your item size is fixed set yourrecyclerview.sethasfixedsize(true)
I didn't know a thing about ANDROID design.Thanks to you I know more than any of the people in my class.You're a legend.
thank you so much just practice and you will be OK
I like your tutorial. Fast, clean and no annoying voice.
This channel is simply awesome. I love your videos man! Thank you so much for making these!!
thx Mango :*
@@AwsRh Can you please tell me if the github repo is the android project imported directly from android studio or else if you have made the folders by yourself, cause I am making this app and tried to do code as you instructed but seems to be some error in it so I wanted to know if I can clone the repo and run it directly??
I'm from Brazil, thank you about the video. Helped me a lot, same after 3 years.
Thank you very much for this video.
I am at last semester of my master's degree and currently working as a intern in private company and i am working on commercial android app & this video helped me alot.
Subscribed to your channel keep doing this amazing work. 👍
Thanks again 👏👏
Thank you so much man. Really appreciate the video. Always had problems with implementing recycler view but this helped me alot.
i'm from Russia, thanks you for this tutorial! Amazing!
It was Stunning Method in which you Described
I have no words just I can say thank you.
Thank you for the video! It's clear and easy to follow.
Great video... Took me 3 days to find this video on the UA-cam... Better add title 'this is using java' cause when we search only thing I see is XML videos in the search result
nice and easy to implement video thanks bro keep it up
Awesome man, I like what you did here! Thanks for sharing it with us,
Just awesome!
Dude, nice work and thank you very much for the effort. Im just beggining a new project in this code will come in handy...
Thanks bro it helped me lot in my project.Keep it up u r doing great job.
Good Luck from Morocco and thank you very much 💙
thanks brother
@@AwsRh me too from Morocco bro how to change description of everyone???
Muchas gracias por tus buenos tutoriales. Saludos desde Nicaragua.
thank you so much
Thank you for such an impressive tutorial :)
About 1:34
For a newer version of android studio, you should write:
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
on build.gradle
it should look like this:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.android.support:cardview-v7:28.0.0' //Card View
implementation 'com.android.support:recyclerview-v7:28.0.0' //Recycler View
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}
Pay Attention!
This is true only to this date, 04.25.2019
You might need to check here for a newer version: developer.android.com/reference/android/support/v7/widget/CardView
(I'll try to find more stuff like this and share here)
2:00 Also:
Instead of writing android.support.widget.RecyclerView
you should write:
androidx.recyclerview.widget.RecyclerView
Pay attention to androidX!!
Great tutorial! Thanks for sharing.
thanks :)
thanks man this is awesome.
So good to follow the flow
Thaaaaank yoooou so much 😘😘♥️ you cooool.
Really Great Tutorial...!!!Thanks Bro...
Genial, no encuentro más palabras para describirlo
I liked your method. Thank you for share.
if i want to distribute the space between the three elements in each row evenly how can i do that?
i try to set android_width="0dp" and android:layout_weight="1" in cardview_item_book.xml but it doesn't work
Very nice!!!! Thats exactly what I needed :)
Thanks a lot sir very good video ... god bless u❤️
your welcome my brother
Plzz make a video on how to save share set wallpaper of a image
Love your content :D thanks for it m8 you help me alot
Really good video, Hope you still going!
Can you please tell me how can i be able to use just two consecutive cardview instead of three becoz the third one is just showing half cardview...
great job,thank you!
Mind Blowing
Can you make a video on same topic but different functionality
After making the home screen book layout then when i click on any book then open a new activity where all the chapters are listed in linear layout . when I click on any chapter then start download pdf file from server with progress bar in internal storage and open in new activty. Downloaded pdf file shouldnot show in other app. this should be only content of this app. After uninstalling this app all downloaded pdf are also deleted.
thank you very much for the video
Hi, do you know how to put this to a tabbed activity. For example, put this layout on tab2.
very good tutorial, kindly do this with firebase, how to upload and retrieve data from firebase in GridView ASAP :)
awesome design, thank you.
You're remarkable, and your work is amazing!!! Wow thanks so much for this. How complex is it to add a drawer(side panel) to this approach? Any changes to be applied?
Awesome, Please told that, how to add html or pdf file for full story?
wow awesome dude... thank you so much
Great Tutorial - how would you make this particular recycler view horizontal?
Is it possible to insert new cards from a button? What would I add in the code to add, leaving the permanent cards in the application? Thank you
Great!!! Dear , thanks so much , keep it up
i am from indonesia, this is very great content, make me can understand how it works. THANKS
Thank you man ... you are the best
شكرا
thanks so much for your support
Awesome Loved it!!!
Thanks. in the meantime we can open up other activities with two different intentions?
Above code works nicely.I have a problem.I want to separate activities for separate books.It means when click one book it should open with it's pdf book viewer....How to do that...? please explain...or give me the code...Thank you
Hey, i did everything as per the video but the intent in adapter is not working
can you explain why i get this error with your code that setOnclick of cardview on a null Object ?
Hey I wanted this to work with bottom navigation what should i do??
Super tutorial! Thanks!!
Nice video bro. Thanks for sharing :)
Thanks bro.. It helped a lot..
amazing tutorial thnk u so much
YOU Are Great Creator #AWS_RH Keep it up..
Thanks for making this video
why the image and the name in the cardview all will stick to together when displaying?
Thank you so much ❤️❤️
but the *Gridlayout isn't in the middle of the screen view* .. How can I fix it ? and thanks for your great tuto.
I have the same problem. Have you figured out how to solve it?
how do you make 3 parts like the picture on your video right and left so that the book cover has 3 parts how to add to fragments?
Thank you for the awesome video, but sir, how can I add a description in the book list Activity.
Hello, it's working... but I need to use this code in fragment? how I can use it? Thank
Add Button on pages. when click on button that book will be open how to make ??? please make a video on that too...
hello the best teacheer
please kindly make toturial how to pick image and open camera in android studio
May I ask you why do you capitalize the variables?
I want to open activity_book to popup !! What should I do?
you are the best man
amazing ... i tried this on android 10 worked great but when i tried on android 5.1 ( Xperia z ultra ) device it was laggy and very very and un responsive any lead ?
How to get same result from online json data
I always watch your video well. By the way do you know how to use CardView to move pages? I've been struggling with this problem for a week. Please help me. TT
how to add webview in place of description....please reply
nice simple design, thank you - how would I be able to zoom in on the book?
HELLO! HOW CAN EDIT THE "DESCRIPTION" TO PUT THE INFORMATION OF EACH ELEMENT, PLEASE.
Bro, How to save scroll position of RecyclerView state between activities and restore it
Amazing. Thank you 👍
thx Edi
Hello sir full mind blowing... But how can i implement Intent to share Data of Thumbnail and Title on btn click plz i tried it but failed....
Amazing broo.. regards from Perú. Pls ..can you teach us how to do this but with firebase connection? (getting images from firebase as example)
using the same tutorial, how can it retrieve data from firebase i.e the image, book title, category and the description when user inserts the data
Thank you for the video!
I have a question. How can I put string data in the description?
Nice One can we get data from json file??
it showed Unsupported Modules Detected: Compilation is not supported for following modules: Recyclerview2, app. Unfortunately you can't have non-Gradle Java modules and Android-Gradle modules in one project.
Excelente como siempre amigo :D
thanks for you support Juan Hernandez
I didn't get margin between two consecutive cardview. What image size you're using in drawable folder?
try to reduce you cardview width
card width is match parent how can i reduce it?
I had the same problem and this worked, thanks!
But it is not responsive for other devicea
Yea I realized this afterwards, I'm trying to look for a solution.
how to load webview on click in another activity
how could i implement this to firebase? and add content to firebase? would this work?
Genius !
thnx a lot Bro
it is awesome but how can i have more description than what in the main_activity is ??!
if i understand well you want more books on the main activity
if so you need just to add more books to your list of books
nice video, how to make it in fragment man?
Nice Tutorial. I have one question though: How can you center the adapter so that the items in the gridLayoutManager/recyclerView are all positioned correctly?
how do i pass an integer value as like other values passed into main activity?
How to add book text on next activity
Can you guid main how can add swipe when click and open image
can you make video setting gridlayout with recycler view in fragment ?
Hey @Aws Rh,
how can I remove the borders of all the items in the recyclerview?
Thank you.
nice tutorial
Help!
The application is running really slow and lagging, What could be the issue? has anyone encountered it ?
--how did you get your recycler view data (i used drawable resources image for testing purpose) in real world app you would get your data from an API
-- use Glide or Picasso to load the images into your views
-- if your item size is fixed set yourrecyclerview.sethasfixedsize(true)
how to implement in app downloader in webview app ,make a video please
Thank you.