Thank you so much for your kind words and support! I'm thrilled to hear that my videos are helpful to you. Sending love and gratitude to Rangpur, Bangladesh!
@@codewithsurya101 ,, bhai Ek poora series banao Android studio par basic of Android studio... In java and kotlin and XML and jetpack compose.... Aap accha samjhate ho. 👌
Bhai app jiss tarah se explain kiya hai bahut accha explain kiya hai mai to ek baar me hi samjh gaya please android ka pura tutorial palylist banaiye basis to advance in kt me❤❤
Awesome video! But when I use a drawer layout in my app, the page zooms in, and the content is cut from top to bottom. Any suggestion would be a great help.
Inside the "activity_main_content.xml" file (layout file where you will create your main page) add the "BottomNavigationView" View as usual, you just have to create a new menu file for this "BottomNavigationView" and implement the java code to manage "bottomNavigationView" item click listeners inside the corresponding java file. If you want to know how to create a Bottom Navigation Bar, you can consider this video tutorial : ruclips.net/video/f2FHc77CbO0/видео.html
Hey man really like your learning style. I discovered you with this video and instantly subscribed bcz I just can't miss the opportunity of learning from someone like you. I had a small query: In the Dotted Pizza app's nav drawer, there is a version at the bottom. Can you pleasle tell us how did you achieved that?
Thank you for a lots of appreciation. In your activity_main.xml file you have a NavigationView, you will have to add a TextView within this NavigationView. This TextView will be your version code and name. You will have set it's layout_gravity to bottom in order to place it at the bottom of navigation drawer. Let me know if it works.
Hi Sir, Thanks. Its Very helpful tutorial. Please tell me which theme on Android Studio are you using ? As your App Run button and other things are very beautiful. I have not such beautiful things in my Android Studio.
First of all, update your Android Studio to latest version (Koala). Go to settings >> Appearance & Behavior >> New UI. Check the Enable new UI button. Now go to Appearance just above the New UI. Make sure the "Theme" is "Dark" and the "Editor color scheme" is "Dark Theme default". Thats it. Tell me if it works.
Hi this video is very good and helps me a lot!! but I want to know why my MainActivity is on error that (DrawerLayout drawerlayout; )Expecting member declaration. give me a comment plz...
@@codewithsurya101 I follow you video step by step but it didn't work. So can you tell me what is missing from this or anything like adding to the program.
@@abhiseksahu3250 Make sure that you are importing the correct libraries for the DrawerLayout and NavigationView. Sometimes you got 2 libraries with same names.
What do you mean that your Toolbar is not working? What's happening to it? Is it not visible or the Button inside it is not clickable or what? Please elaborate.
I appreciate your suggestion regarding the Compose. While I'm currently more focused on XML layout design in Android Studio, I'll definitely consider exploring Compose in future tutorials. Stay tuned for more content!
Food ordering app android java Sqlite database mein banaye k liye konsay topics clear chayein Jis mein yeh function reg hu Customer Placing order online Update order Make feedback Select payment method online/offline Admin Management order Notifies when new order is placed Notifies when stock is getting low Make daily sales report? Plz Thora guide kr dein🙏🙏🙏?
I would recommend you to use firebase instead of sqlite because your data will be needed to share through a cloud server. You can use Firebase Realtime-database to manage orders. You can use Razorpay for the payments. You can use OneSignal to manage the notifications for orders or anything else. This would be huge project so you will need lots of skill, knowledge and patience. All the best! 👍
You can add a TextView inside of the NavigationView and make the "layout_gravity=bottom" to place it at bottom. Here is a sample : add this code within the NavigationView If you want to change the version code programmatically using Java then use the code as below : try { PackageInfo packageInfo = getPackageManager().getPackageInfo(getPackageName(), 0); String version = "v" + packageInfo.versionCode + "." + packageInfo.versionName; TextView textVersion = findViewById(R.id.textVersion); textVersion.setText(version); } catch (PackageManager.NameNotFoundException e) { throw new RuntimeException(e); }
can you make a video that how we can add horizontal scroll in a table row as an example 1.there are two rows ROW 1 and ROW 2 2. Each ROW has 10 Column But i want to scroll only single row ruclips.net/video/ztomHaKrILk/видео.htmlsi=kiWjb7HrOu6PLT6u this is perfect video for my problem
Seriously best explanation about this topic in hindi. If anyone knows the basics, it will be very helpful for them
My Indian brothers are always Life saver
OMG THANK YOU SO MUCH
Finally a tutorial that is not outdated, seriously THANK YOU
I don't understand your language, but I was able to follow until the end, very good tutorial.
Thanks! ❤️
You deserve more subscribers ! Love From Rangpur, Bangladesh. Thank you so much. Your videos helps me a lot !
Thank you so much for your kind words and support! I'm thrilled to hear that my videos are helpful to you. Sending love and gratitude to Rangpur, Bangladesh!
very nice video. I love this video, thank you sir❤❤❤❤
Great Bro, Java Language always love ❤️⭐⭐⭐
nice man
please make a complete whole course on android
thanks man
best explanation ever ....
thank you
Excellent Way, to Explain Each and Every things
Very very Nice Video. ❤
Saare Concept clear ho gaye, well Done Work. 👏✌️
Thankyou! 😊
@@codewithsurya101 ,, bhai
Ek poora series banao Android studio par basic of Android studio... In java and kotlin and XML and jetpack compose....
Aap accha samjhate ho. 👌
Thank you for this video
Bhai app jiss tarah se explain kiya hai bahut accha explain kiya hai mai to ek baar me hi samjh gaya please android ka pura tutorial palylist banaiye basis to advance in kt me❤❤
Awesome video! But when I use a drawer layout in my app, the page zooms in, and the content is cut from top to bottom. Any suggestion would be a great help.
How can I add the bottom nav in main page when I have nav drawer? Should I create another file? or should I nest it inside the nav drawer?
Inside the "activity_main_content.xml" file (layout file where you will create your main page) add the "BottomNavigationView" View as usual, you just have to create a new menu file for this "BottomNavigationView" and implement the java code to manage "bottomNavigationView" item click listeners inside the corresponding java file.
If you want to know how to create a Bottom Navigation Bar, you can consider this video tutorial :
ruclips.net/video/f2FHc77CbO0/видео.html
Thank you so much 🙏😊
Please make a video on how to migrate from nav items
Does this article need a db browser to save the database?
Good tutorial Really useful.
Thanks!
Sir open wala method 14:03 nhi use ho pa rha please help me 😢
Excellent...the way of explanation is great 🎉
Thanks a lot 😊
Too good bro
While creating the layout file I am getting Toolbar Cloud please tell me which dependency you are actually using
Hey man really like your learning style. I discovered you with this video and instantly subscribed bcz I just can't miss the opportunity of learning from someone like you.
I had a small query: In the Dotted Pizza app's nav drawer, there is a version at the bottom. Can you pleasle tell us how did you achieved that?
Thank you for a lots of appreciation.
In your activity_main.xml file you have a NavigationView, you will have to add a TextView within this NavigationView. This TextView will be your version code and name. You will have set it's layout_gravity to bottom in order to place it at the bottom of navigation drawer.
Let me know if it works.
Hi Sir, Thanks. Its Very helpful tutorial. Please tell me which theme on Android Studio are you using ? As your App Run button and other things are very beautiful.
I have not such beautiful things in my Android Studio.
First of all, update your Android Studio to latest version (Koala).
Go to settings >> Appearance & Behavior >> New UI.
Check the Enable new UI button.
Now go to Appearance just above the New UI.
Make sure the "Theme" is "Dark" and the "Editor color scheme" is "Dark Theme default".
Thats it.
Tell me if it works.
@@codewithsurya101 Yes, Sir, I got it from >> New UI
Thanks a lot.
Yes Sir, It works with >> New UI
Thanks again. I learnt many new things from your tutorial and especially this new UI. 😊
Great video 👍🏻
thanks, it's helpful .
Hi this video is very good and helps me a lot!! but I want to know why my MainActivity is on error that (DrawerLayout drawerlayout; )Expecting member declaration. give me a comment plz...
I got it
Excellent teacher, keep it up. ❤
Thanks! 💚
bhai maine bottom naviagtion view se fragment load kr diye but smjh nhi aa rha home fragment m kya add kru
Were you using any dependency for the navigation drawer like which design support library .
No, you don't need to add any other dependency for navigation drawer.
@@codewithsurya101 I followed your steps but it doesn't work.
@@codewithsurya101 I follow you video step by step but it didn't work. So can you tell me what is missing from this or anything like adding to the program.
Navigation view works but their header layout and menu doesn't show in the preview screen
@@abhiseksahu3250 Make sure that you are importing the correct libraries for the DrawerLayout and NavigationView. Sometimes you got 2 libraries with same names.
Bhai take Love from Bangladesh 🇧🇩. Subscribe done. Great video. Please help us for learning android development in java .
Thankyou so much!
Which language is used here, java or kotlin?
@@afxana11It is JAVA.
excellent bhaiya
perfect video
@@newbie1101 thankyou
When i click on the tool bar ... Image view button it's not showing the menu...
no te entendi nada de lo que hablas pero me ayudo mucho
Thankyou!
hermano yo le puse sub español xd
y si esta bacan me funciono
fucione el constraint con drawer :)
How u remove the top bar and how u customize te menu acces button? thanks
I have explained everything in this video, you can watch again the video for better understanding.
а как Menu обевить переменную и код добавить на котлине
Sir app close ho ja raha apne se open ho ke 😭😭
In activity_main_content my toolbar is not working ro tfat i cannot do the nect process
What should i do now to toolbar
What do you mean that your Toolbar is not working? What's happening to it? Is it not visible or the Button inside it is not clickable or what? Please elaborate.
Nice
Puedes hacer la segunda parte por favor?
Now i am trying to do the same project but when i click on item nothing happening. Can you give me solution
You can DM me on my instagram.
instagram.com/coding.lab_?igsh=a3BxOW0yNzZsYXhu
hlo sir navigation view me header aur items add karne ke baad mujhe preview me show hi nhi ho rha hai uska bataiye please sir
@@ShivamYadav-wq3tc Android Studio restart kr dijiye, phir bhi nhi thik hota to, go to Build >> Clean Project.
@@codewithsurya101 thank you sir
Please make a full course playlist
I will be starting soon, Thanks!
main statusBarcolor kasa set karu?
Kotlin me iska video hai kya bhiya
Sorry brother, abhi available nhi h
i'm having trouble knowing where to start when using firebase for a project. Can u help me?
Yaa sure! DM me here on Instagram.
instagram.com/coding.lab_?igsh=a3BxOW0yNzZsYXhu
@@codewithsurya101I watched all posts on your Instagram but haven't seen it.
I told you to DM me, means Message me on my Instagram. I will guide you regarding your query.
@@codewithsurya101 excuse me, i sent a message to you on my Instagram.
@@codewithsurya101 excuse me, i have sent a message on my Instagram.
Supar sir
Hey bro nice content, but is time in compose not xml tutorial
I appreciate your suggestion regarding the Compose. While I'm currently more focused on XML layout design in Android Studio, I'll definitely consider exploring Compose in future tutorials. Stay tuned for more content!
Dude make more videos.
Food ordering app android java Sqlite database mein banaye k liye konsay topics clear chayein Jis mein yeh function reg hu
Customer
Placing order online
Update order
Make feedback
Select payment method online/offline
Admin
Management order
Notifies when new order is placed
Notifies when stock is getting low
Make daily sales report?
Plz Thora guide kr dein🙏🙏🙏?
I would recommend you to use firebase instead of sqlite because your data will be needed to share through a cloud server.
You can use Firebase Realtime-database to manage orders.
You can use Razorpay for the payments.
You can use OneSignal to manage the notifications for orders or anything else.
This would be huge project so you will need lots of skill, knowledge and patience.
All the best! 👍
@@codewithsurya101 it's my final year project it is mandatory to use SQLite dB
Next video plz 🙏
@@loolkummar coming soon....
how to add version at the bottom of navbar
You can add a TextView inside of the NavigationView and make the "layout_gravity=bottom" to place it at bottom.
Here is a sample : add this code within the NavigationView
If you want to change the version code programmatically using Java then use the code as below :
try {
PackageInfo packageInfo = getPackageManager().getPackageInfo(getPackageName(), 0);
String version = "v" + packageInfo.versionCode + "." + packageInfo.versionName;
TextView textVersion = findViewById(R.id.textVersion);
textVersion.setText(version);
} catch (PackageManager.NameNotFoundException e) {
throw new RuntimeException(e);
}
@@codewithsurya101 Thank you much!!
thanks bro
How to make a search buttom?
I didn't get your query, please elaborate.
how to do a search like in Google or like in other platforms?
preview se screen hi gayab ho gya hai
please make option menu same project
Sure 👍
please main activity java code
drive.google.com/file/d/1A8ymdymdSYSlIgNrcw4mYmgPp1e4saJ1/view?usp=drive_link
9:35 / 24:1
can you make a video that how we can add horizontal scroll in a table row
as an example
1.there are two rows ROW 1 and ROW 2
2. Each ROW has 10 Column
But i want to scroll only single row
ruclips.net/video/ztomHaKrILk/видео.htmlsi=kiWjb7HrOu6PLT6u
this is perfect video for my problem