can anyone suggest best emulator(vdevice of android studio) for low end pc or share hardware profile spec intel celeron 1.60 base clock ram 8gb/hdd slightly high android version
Ask Mitra Latest Questions
Hope you will share your experience.
How to delete a document from Firestore in recyclerView in android. I have auto-generated documents id’s I Want to delete that auto-generated id’s data and If you know how to delete the document then you can post your answer according to ...Read more
Which programming language should i use to start making android app that uses laravel rest API?
Previously it was working all fine. I recently changed the OS and installed android studio and since then the problem arrived. The app is supposed to open url and open a location on clicking the respective buttons but it is ...Read more
As of current market demand and your experience, which among kotlin and flutter might be a better option to go for?
Hey app developers there! I am willing to pursue my career as an application development. So I jumped on youtube and searched Application development roadmap. But I couldn`t find the precise roadmap. I found many youtubers recommending to Learn KOTLIN for ...Read more
//In mainActivity public static final String TEXT = “com.example.android.threeativities.extra.text”; Intent intent = new Intent(this, secondActivity.class); intent.putExtra(TEXT, R.string.text); startActivity(intent); //In strings.xml <string name=”text”>Hello World</string> //In SecondActivity Intent intent = getIntent(); String message = intent.getStringExtra(MainActivity.TEXT); textView.setText(message);