Тёмный
Learnoset - Learn Coding Online
Learnoset - Learn Coding Online
Learnoset - Learn Coding Online
Подписаться
Hello Everyone,
Welcome to Learnoset RU-vid Channel.

If you want to learn to code online then Learnoset is the best platform for you. We upload videos regarding java programming, android app development, website development, UI design in an easy way to learn.

We provide,
Project Explanation Videos
Programming Languages Tutorials
UI/UX design videos.

You can find code examples and algorithms on our website and android app. You can ask about your doubts and find best solution on your errors or problems from coders around the world.
Комментарии
@LockeIda
@LockeIda 15 дней назад
Walker Ruth Thompson Larry Rodriguez Michelle
@Chhoti-m3p
@Chhoti-m3p 16 дней назад
40:48 when i run the application it get crashed and won't open i try to solve but not able too
@ChauNathan-w4n
@ChauNathan-w4n 22 дня назад
Make the food red would be better <3
@adammakanu131
@adammakanu131 Месяц назад
Please how can you stop the count down
@VlogerArman786
@VlogerArman786 Месяц назад
Bro i want to buy
@teresinaweb
@teresinaweb Месяц назад
How would I do it, share the recycling text on WhatsApp?
@eagtmwangazachurchdodoma
@eagtmwangazachurchdodoma Месяц назад
Hellow, is there any way to get the codes for this project?
@SARASWATIEDUCATION-z2g
@SARASWATIEDUCATION-z2g Месяц назад
Bhai fragment ki jagah viewpager laga kar video banao....please
@abhijithp7569
@abhijithp7569 Месяц назад
worked thank you
@MahmoudTammamJake
@MahmoudTammamJake Месяц назад
I made subscribe but sill i can not download it please help me
@SabirAli-np7ci
@SabirAli-np7ci 2 месяца назад
Excellent !!!
@devdeepanik3068
@devdeepanik3068 2 месяца назад
On website it's free showing after downloading from app it ask for 3k
@chamathmadhuranga
@chamathmadhuranga 2 месяца назад
i need this code
@Ulya-i6h
@Ulya-i6h 2 месяца назад
How can i get this version of android studio
@samadsarkar1590
@samadsarkar1590 2 месяца назад
I faced big problem please help me
@Chandraroyal-i3s
@Chandraroyal-i3s 3 месяца назад
Can you like get data from firebase
@latestsolutions837
@latestsolutions837 3 месяца назад
Great Coding
@ДианаЗахарова-я2д
@ДианаЗахарова-я2д 3 месяца назад
Здравствуйте, кто-то может подсказать как исправить: я запустила приложение сначала на одном устройстве, там все было хорошо, потом на другом, там не получилось зарегистрировать пользователя, он просто не добавляется. С окна регистрации никуда не переходит
@Victor-hb2hi
@Victor-hb2hi 3 месяца назад
how can I send File like PDF
@Chrismk48
@Chrismk48 3 месяца назад
Something is wrong with your app I bought chat app source code and I can't use it
@MrYou845
@MrYou845 3 месяца назад
मेने भी अपने app में bottom navigation के साथ fragments का use लिया पर मेरा app बार बार क्रैश हो रहा है इसका कुछ सलूशन पता हो तो बताना ,मेने हर एक fregment में api calling के through data load करवाया है जब data जल्दी load हो जाता है तब app क्रैश नहीं होता है पर जब धीरे load होता है या नहीं होता है तब app क्रैश हो जाता है इसका कुछ उपाय हो तो बताना
@tidosocatherinee.5152
@tidosocatherinee.5152 4 месяца назад
I purchased this but you didn't response to my email
@mohiuddin12
@mohiuddin12 4 месяца назад
Memory data.java code Plasse
@asimawan297
@asimawan297 4 месяца назад
public class ScanActivity extends AppCompatActivity { private TextView qrCodeTxt; private PreviewView previewView; private ListenableFuture<ProcessCameraProvider> cameraProviderListenableFuture; private ImageView resetButton; @SuppressLint("MissingInflatedId") @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_scan); resetButton = findViewById(R.id.resetButton); resetButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Const.nextActivity(ScanActivity.this, new SettingsActivity()); } }); qrCodeTxt = findViewById(R.id.qrCideTxt); previewView = findViewById(R.id.cameraPreview); // checking for camera permissions if (ContextCompat.checkSelfPermission(ScanActivity.this, Manifest.permission.CAMERA) == PackageManager.PERMISSION_GRANTED) { init(); } else { ActivityCompat.requestPermissions(ScanActivity.this, new String[]{Manifest.permission.CAMERA}, 101); } } private void init() { cameraProviderListenableFuture = ProcessCameraProvider.getInstance(ScanActivity.this); cameraProviderListenableFuture.addListener(new Runnable() { @Override public void run() { try { ProcessCameraProvider cameraProvider = cameraProviderListenableFuture.get(); bindImageAnalysis(cameraProvider); } catch (ExecutionException e) { throw new RuntimeException(e); } catch (InterruptedException e) { throw new RuntimeException(e); } } }, ContextCompat.getMainExecutor(ScanActivity.this)); } @Override public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) { super.onRequestPermissionsResult(requestCode, permissions, grantResults); if(grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) { init(); } else { Toast.makeText(ScanActivity.this, "Permissions Denied", Toast.LENGTH_SHORT).show(); } } private void bindImageAnalysis(ProcessCameraProvider processCameraProvider) { ImageAnalysis imageAnalysis = new ImageAnalysis.Builder().setTargetResolution(new android.util.Size(1280, 720)) .setBackpressureStrategy(ImageAnalysis.STRATEGY_KEEP_ONLY_LATEST).build(); imageAnalysis.setAnalyzer(ContextCompat.getMainExecutor(ScanActivity.this), new ImageAnalysis.Analyzer() { @Override public void analyze(@NonNull ImageProxy image) { @SuppressLint("UnsafeOptInUsageError") Image medialmage = image.getImage(); if (medialmage != null) { InputImage image2 = InputImage.fromMediaImage(medialmage, image.getImageInfo().getRotationDegrees()); BarcodeScanner scanner = BarcodeScanning.getClient(); Task<List<Barcode>> results = scanner.process(image2); results.addOnSuccessListener(new OnSuccessListener<List<Barcode>>() { @Override public void onSuccess(List<Barcode> barcodes) { for (Barcode barcode : barcodes) { final String getValue = barcode.getRawValue(); qrCodeTxt.setText(getValue); Const.qrCode = qrCodeTxt.getText().toString(); if (!Const.qrCode.equals("")) { Const.nextActivity(ScanActivity.this, new FormActivity()); Toast.makeText(ScanActivity.this,Const.qrCode,Toast.LENGTH_SHORT).show(); finish(); } } image.close(); medialmage.close(); } }); } } }); Preview preview = new Preview.Builder().build(); CameraSelector cameraSelector = new CameraSelector.Builder().requireLensFacing(CameraSelector.LENS_FACING_BACK).build(); preview.setSurfaceProvider(previewView.getSurfaceProvider()); processCameraProvider.bindToLifecycle( this, cameraSelector, imageAnalysis, preview); } }
@mrking3483
@mrking3483 4 месяца назад
Good Video
@Abc-fc9zb
@Abc-fc9zb 4 месяца назад
Anyone have source code of this ui I'll pay who give this
@mehmetakiftutal7472
@mehmetakiftutal7472 4 месяца назад
I want to bring innovation to this project. I want to open another activity and show these questions to the user according to the level chosen by the user in that activity. How can I do this on the question screen? Please help me
@nurizzati7837
@nurizzati7837 4 месяца назад
hi, I have downloaded your source code in the app but there is no bankquestion in it.
@yashrajmungurdekar2413
@yashrajmungurdekar2413 4 месяца назад
What about the questions are they dynamic or static?
@wooodterstegn
@wooodterstegn 5 месяцев назад
23:43
@Odino3107
@Odino3107 5 месяцев назад
35:20 The database couldn't get any data after I hit the button though
@sddss53
@sddss53 5 месяцев назад
does this work on visual studios?
@arvisharma-ow6do
@arvisharma-ow6do 5 месяцев назад
FirebaseAuth.signinwithcredential doesn't appear in default actions showing error
@21flame72
@21flame72 6 месяцев назад
Where is the authentication part
@ShubhamSevak-f9e
@ShubhamSevak-f9e 6 месяцев назад
how to set border color??
@chinadram4859
@chinadram4859 6 месяцев назад
Hello, can you help me with an issue I really need?
@XuanVu-od1my
@XuanVu-od1my 6 месяцев назад
SEND SC PLEASE I LUV U
@pial9483
@pial9483 6 месяцев назад
can anybody give me the code
@riddhimitra172
@riddhimitra172 6 месяцев назад
Someone plz provide the transparent_back.png . It is the only missing link in my project
@riddhimitra172
@riddhimitra172 6 месяцев назад
Is there no sound in the vdo except for the intro ?
@ANASHASAN-d9p
@ANASHASAN-d9p 6 месяцев назад
Thanks for uploading this I have completed but in 1,2,3,4 and in 7 I'm not able to put x or 0 so can u please help me out in this
@jenjiliv2659
@jenjiliv2659 7 месяцев назад
where is the password show link
@DiamodChorobekov
@DiamodChorobekov 7 месяцев назад
I still don't understand where selectedTab comes from 15:41
@pratikyadav.9201
@pratikyadav.9201 Месяц назад
It's a counter = 1 means fragment 1
@Adm.Focus.
@Adm.Focus. 7 месяцев назад
Having a issue ;( When running the app on the emulator, the firebase realtime screen is not showing any connection to the db. Look like the code is not writing anything in the realtime db Helpppp
@evonmaxilom9950
@evonmaxilom9950 7 месяцев назад
oddly amazing when copying a tutorial that also works to the viewers
@markharveyleduna3673
@markharveyleduna3673 8 месяцев назад
Finished following the tutorial. Got problems with the score results. Thanks for the tutorial
@patd5
@patd5 6 месяцев назад
how did you fix it? i'm having problems with the result as well, it won't appear after questions are finished, just returns back to the topics.
@prananjalimarathe983
@prananjalimarathe983 8 месяцев назад
It's showing nullpointerexception
@rajekarur2747
@rajekarur2747 8 месяцев назад
Hii bro I'm get an error in quote.java file and main activity file can plz help me of it
@chyrickjaypontillas9315
@chyrickjaypontillas9315 8 месяцев назад
both interstitial and banner ads from your code is failed to ad after running my source code I bought from your app. how to fix it?
@zisouh710
@zisouh710 8 месяцев назад
How to find xml icon Bro do it in description why like that