Posts

Rohingya books apk

Image
It's create only for Rohingya language learners and if you want to learn Rohingya language please download now.                ROHINGYA BOOKS                          π΄Œπ΄Ÿπ΄‡π΄π΄™π΄šπ΄’𐴙𐴝 π΄‘π΄žπ΄ƒπ΄π΄π΄’                             Screenshot Download now!  Rohingya books π΄Œπ΄Ÿπ΄‡π΄π΄™π΄šπ΄’π΄™π΄ π΄‘π΄žπ΄ƒπ΄π΄π΄’

How to slide page in Sketchware?

Image
Enter your Sketchware  Create page like these   Click On Activity Create      Enter Moreblock create block like this Click block and you add textview - settextcolor. Slider java code Code copy  One final androidx.viewpager.widget.ViewPager viewPager = new androidx.viewpager.widget.ViewPager(this); viewPager.setLayoutParams(new ViewGroup.LayoutParams( ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT)); viewPager.setBackgroundColor(Color.parseColor("#03a9f4")); MyPagerAdapter adapter = new MyPagerAdapter(); viewPager.setAdapter(adapter); viewPager.setCurrentItem(0);    Two linear1.addView(viewPager) Three viewPager.addOnPageChangeListener(new androidx.viewpager.widget.ViewPager.OnPageChangeListener() { public void onPageSelected(int position) { View noview = (View) viewPager.findViewWithTag("myview" + viewPager.getCurrentItem()); Four if (position == 0) { _a(); } if (position == 1) { _b (); } if (position == 2) { _c(); } if...

How to make share button in Sketchware?

Image
 How to make share button in Sketchware? Add a button follow below image. Click on button add source directly blog follow below image. Copy code..... shareApplication(); Create a block follow below image. Click on your block follow below image. Copy code } private void shareApplication() {      android.content.pm.ApplicationInfo app =      getApplicationContext().getApplicationInfo();      String filePath = app.sourceDir;     Intent intent = new Intent(Intent.ACTION_SEND);      intent.setType("*/*");      java.io.File originalApk = new java.io.File(filePath);      try {        java.io.File tempFile = new java.io.File(getExternalCacheDir() + "/ExtractedApk");        if (!tempFile.isDirectory())        if (!tempFile.mkdirs())        return;        tempFile = new java.io.File(tempFil...

How to create SpeechToText in Sketchware?

Image
 How to create SpeechToText in Sketchware? Add textview and imageview follow below image. Add a filepicker component click onfilesPicked follow below image. Click on files picked. Add source directly follow below image. Copy this code.... } break; case REQ_CODE_SPEECH_INPUT: if (_resultCode == RESULT_OK && null != _data) { ArrayList<String> result = _data.getStringArrayListExtra(android.speech.RecognizerIntent.EXTRA_RESULTS); edittext1.setText(result.get(0)); Click on imageview to add source directly follow below image.  Copy this code....... Intent intent = new Intent(android.speech.RecognizerIntent.ACTION_RECOGNIZE_SPEECH); intent.putExtra(android.speech.RecognizerIntent.EXTRA_LANGUAGE_MODEL, android.speech.RecognizerIntent.LANGUAGE_MODEL_FREE_FORM); intent.putExtra(android.speech.RecognizerIntent.EXTRA_LANGUAGE, Locale.getDefault()); intent.putExtra(android.speech.RecognizerIntent.EXTRA_PROMPT, "Speak Now"); try { startActivityForResult(intent, REQ_CODE_SPEEC...

English to Rohingya Dictionary

Image
English to Rohingya Dictionary Download now

How to use TextToSpeech in Sketchware?

Image
How to use TextToSpeech in Sketchware?  Add Edit Text and Imageview follow below image. Add component TextToSpeech  follow below image. Click on imageview to add more blocks follow below image. Watch this video to develop