2

我编写了一个小测试应用程序来学习如何使用多种语言,并使用模拟器对其进行测试。我正在使用带有 Android SDK 的 NetBeans。该应用程序的多语言方面运行良好。由于使用模拟器的速度很慢,我尝试在我的设备(HTC Inspire 4G)上运行我的应用程序。我以前用其他应用程序做过,没有问题。然而,今天,有了这个简单的应用程序,当我在第一个和第二个屏幕之间来回切换时,第 2 页上的按钮和 textview 不断缩小。这在模拟器中不会发生;小部件保持相同的大小。我没有做任何我过去没有做过的布局方面的事情,所以我不知道为什么按钮会变坏。相关代码贴在下面。我希望另一双眼睛能找到我缺少的东西。

感谢一百万倍,比尔

更新:我注意到如果在按钮缩小后将手机从纵向旋转到横向(反之亦然),它们会恢复为正常的默认大小。(虽然语言重置为默认设置,英语。)

MainActivity.java:

@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

Button button;

button = (Button) findViewById(R.id.use_english_button);
button.setOnClickListener(new GoToPage2OnClickListener("en"));

button = (Button) findViewById(R.id.use_french_button);
button.setOnClickListener(new GoToPage2OnClickListener("fr"));

button = (Button) findViewById(R.id.use_spanish_button);
button.setOnClickListener(new GoToPage2OnClickListener("es"));

button = (Button) findViewById(R.id.use_italian_button);
button.setOnClickListener(new GoToPage2OnClickListener("it"));
}

private class GoToPage2OnClickListener implements View.OnClickListener {
private String language = "";

public GoToPage2OnClickListener(String language) {
    this.language = language;
}

public void onClick(View v) {

    // This comes from
    // http://stackoverflow.com/questions/12230553/android-how-to-change-the-application-language-at-runtime

    Locale locale = new Locale(language);
    Locale.setDefault(locale);
    Configuration config = new Configuration();
    config.locale = locale;
    getBaseContext().getResources().updateConfiguration(config,
        getBaseContext().getResources().getDisplayMetrics());

    SharedPreferences languagepref =
        getSharedPreferences("language", MODE_PRIVATE);
    SharedPreferences.Editor editor = languagepref.edit();
    editor.putString("languageToLoad", language);
    editor.commit();

    Intent intent = new Intent(MainActivity.this,
        Page2Activity.class);
    startActivity(intent);
}
}

Page2Activity.java:

@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);

setContentView(R.layout.page_2);

SharedPreferences language =
    getSharedPreferences("language", MODE_PRIVATE);

Map<String,String> prefMap = (Map<String,String>) language.getAll();
String str = prefMap.get("languageToLoad");

Locale locale = new Locale(str);
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;

DisplayMetrics dm = getBaseContext().getResources().getDisplayMetrics();

getBaseContext().getResources().updateConfiguration(config,
    getBaseContext().getResources().getDisplayMetrics());

Button button;

button = (Button) findViewById(R.id.page_2_back_button);
button.setOnClickListener(new View.OnClickListener() {
    public void onClick(View v) {
        finish();
    }
});

page_2.xml

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id="@+id/output_textview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="10sp"
android:text="@string/welcome_b"
/>
<TableLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TableRow
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <Button
        android:id="@+id/page_2_back_button"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:text="@string/page_2_back_button"
        android:layout_margin="5sp"
        android:layout_weight="1"
        />
    <Button
        android:id="@+id/page_2_next_button"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:text="@string/page_2_next_button"
        android:layout_margin="5sp"
        android:layout_weight="1"
        />
</TableRow>
</TableLayout>
4

1 回答 1

1

我想到了!!每个之后:

Configuration config = new Configuration();

你必须打电话:

config.setToDefaults();

来自http://developer.android.com/reference/android/content/res/Configuration.html

公共构造函数 Configuration() 构造一个无效的配置。您必须调用 setToDefaults() 才能使该对象有效。

我将不得不将此发布到我学习如何设置语言环境的问题/答案中。

于 2012-10-30T14:09:08.207 回答