কম্পিউটার

ব্যবহারকারী যখন অ্যান্ড্রয়েডে ভাষা নির্বাচন করেন তখন কীভাবে অ্যাপের ভাষা পরিবর্তন করবেন?


এই উদাহরণটি দেখায় যে ব্যবহারকারী ভাষা নির্বাচন করলে আমি কীভাবে অ্যাপের ভাষা পরিবর্তন করব।

ধাপ 1 − অ্যান্ড্রয়েড স্টুডিওতে একটি নতুন প্রকল্প তৈরি করুন, ফাইল ⇒ নতুন প্রকল্পে যান এবং একটি নতুন প্রকল্প তৈরি করতে সমস্ত প্রয়োজনীয় বিবরণ পূরণ করুন৷

ধাপ 2 − res/layout/activity_main.xml-এ নিম্নলিখিত কোড যোগ করুন।

<RelativeLayout
   xmlns:android="https://schemas.android.com/apk/res/android"
   xmlns:tools="https://schemas.android.com/tools"
   android:id="@+id/rl"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:padding="10dp"
   tools:context=".MainActivity">
   <Spinner
      android:id="@+id/spinner"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_centerInParent="true" />
   <TextView
      android:id="@+id/string"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="@string/thank_you"
      android:textSize="24sp"
      android:layout_centerInParent="true"
      android:layout_below="@id/spinner"/>
</RelativeLayout>

ধাপ 3 − src/MainActivity.java

-এ নিম্নলিখিত কোড যোগ করুন
import android.content.Intent;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.DisplayMetrics;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Spinner;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
public class MainActivity extends AppCompatActivity {
   Spinner spinner;
   Locale locale;
   String currentLanguage = "en", currentLang;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      currentLanguage = getIntent().getStringExtra(currentLang);
      spinner = findViewById(R.id.spinner);
      List<String> list = new ArrayList<>();
      list.add("Select Language");
      list.add("English");
      list.add("Español");
      list.add("Français");
      list.add("Hindi");
      ArrayAdapter<String> adapter = new ArrayAdapter<>(this, R.layout.support_simple_spinner_dropdown_item, list);
      adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
      spinner.setAdapter(adapter);
      spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
         @Override
         public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
            switch (position) {
               case 0:
               break;
               case 1:
                  setLocale("en");
               break;
               case 2:
                  setLocale("es");
               break;
               case 3:
                  setLocale("fr");
               break;
               case 4:
                  setLocale("hi");
               break;
            }
         }
         @Override
         public void onNothingSelected(AdapterView<?> parent) {
         }
      });
   }
   private void setLocale(String localeName) {
      if (!localeName.equals(currentLanguage)) {
         locale = new Locale(localeName);
         Resources res = getResources();
         DisplayMetrics dm = res.getDisplayMetrics();
         Configuration conf = res.getConfiguration();
         conf.locale = locale;
         res.updateConfiguration(conf, dm);
         Intent refresh = new Intent(this,
         MainActivity.class);
         refresh.putExtra(currentLang, localeName);
         startActivity(refresh);
      } else {
         Toast.makeText(MainActivity.this, "Language
         already selected!", Toast.LENGTH_SHORT).show();
      }
   }
   public void onBackPressed() {
      Intent intent = new Intent(Intent.ACTION_MAIN);
      intent.addCategory(Intent.CATEGORY_HOME);
      intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
      startActivity(intent);
      finish();
      System.exit(0);
   }
}

পদক্ষেপ 4৷ − মান-es, মান-fr, মান-হাই তৈরি করুন এবং নিম্নলিখিত কোড যোগ করুন −

values-hi/strings.xml

<resources>
   <string name="app_name">Sample</string>
   <string name="thank_you">धन्यवाद</string>
</resources>

values-fr/strings.xml

<resources>
   <string name="app_name">Sample</string>
   <string name="thank_you">Je vous remercie</string>
</resources>

values-es/strings.xml

<resources>
   <string name="app_name">Sample</string>
   <string name="thank_you">Gracias</string>
</resources>

strings.xml

<resources>
   <string name="app_name">Sample</string>
   <string name="thank_you">धन्यवाद</string>
</resources>

ধাপ 5 − androidManifest.xml

-এ নিম্নলিখিত কোড যোগ করুন
<?xml version="1.0" encoding="utf-8"?>
<manifest
   xmlns:android="https://schemas.android.com/apk/res/android"
   package="app.com.sample">
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:supportsRtl="true"
      android:theme="@style/AppTheme">
      <activity android:name=".MainActivity">
         <intent-filter>
            <action
               android:name="android.intent.action.MAIN" />
            <category
               android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
   </application>
</manifest>

আপনার অ্যাপ্লিকেশন চালানোর চেষ্টা করা যাক. আমি ধরে নিচ্ছি আপনি আপনার কম্পিউটারের সাথে আপনার আসল অ্যান্ড্রয়েড মোবাইল ডিভাইসটি সংযুক্ত করেছেন৷ অ্যান্ড্রয়েড স্টুডিও থেকে অ্যাপটি চালাতে, আপনার প্রোজেক্টের অ্যাক্টিভিটি ফাইলগুলির একটি খুলুন এবং টুলবার থেকে রুনিকনে ক্লিক করুন। একটি বিকল্প হিসাবে আপনার মোবাইল ডিভাইস নির্বাচন করুন এবং তারপরে আপনার মোবাইল ডিভাইসটি পরীক্ষা করুন যা আপনার ডিফল্ট স্ক্রীন প্রদর্শন করবে -

ব্যবহারকারী যখন অ্যান্ড্রয়েডে ভাষা নির্বাচন করেন তখন কীভাবে অ্যাপের ভাষা পরিবর্তন করবেন?

ব্যবহারকারী যখন অ্যান্ড্রয়েডে ভাষা নির্বাচন করেন তখন কীভাবে অ্যাপের ভাষা পরিবর্তন করবেন?


  1. অ্যান্ড্রয়েড অ্যাপে একটি সাধারণ পাঠ্য ফাইল কীভাবে পড়বেন?

  2. অ্যান্ড্রয়েড অ্যাপে একটি খণ্ড থেকে একটি কার্যকলাপ পদ্ধতি কল কিভাবে?

  3. অ্যান্ড্রয়েডে 5 সেকেন্ডের জন্য ব্যবহারকারীর নিষ্ক্রিয়তা কীভাবে সনাক্ত করবেন?

  4. অ্যান্ড্রয়েড ফোনে অ্যাপ আইকনগুলি কীভাবে পরিবর্তন করবেন