我搜索了许多看起来像这个问题的问题,但我们在其中任何一个问题中找不到答案。我想从片段中将本地默认设置为英语,我将此代码用于onStart()
和onAttach()
以及onCreateView()
但是没有工作
我的片段代码:
package com.demo.tomcatfire.taskmanagerui;
import android.content.Context;
import android.content.Intent;
import android.content.res.Configuration;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import java.util.Locale;
public class MainFragment2 extends Fragment implements View.OnClickListener {
private LinearLayout ll_display,ll_add,ll_about,ll_about2,ll_learnig,ll_learnig2;
@Override
public void onAttach(Context context) {
Locale locale = new Locale("en");
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
context.getResources().updateConfiguration(config,
context.getResources().getDisplayMetrics());
}
@Override
public void onStart() {
Locale locale = new Locale("en");
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getContext().getResources().updateConfiguration(config,
getContext().getResources().getDisplayMetrics());
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_main2, container, false);
ll_about=(LinearLayout) rootView.findViewById(R.id.LL_aboute);
ll_about2=(LinearLayout) rootView.findViewById(R.id.LL_aboute2);
ll_display=(LinearLayout)rootView.findViewById(R.id.LL_display);
ll_learnig=(LinearLayout) rootView.findViewById(R.id.LL_learning);
ll_learnig2=(LinearLayout) rootView.findViewById(R.id.LL_learning2);
ll_add=(LinearLayout)rootView.findViewById(R.id.LL_add);
//------------------------------------------------------------------------------------------
ll_add.setOnClickListener(this);
ll_display.setOnClickListener(this);
ll_learnig.setOnClickListener(this);
ll_learnig2.setOnClickListener(this);
ll_about.setOnClickListener(this);
ll_about2.setOnClickListener(this);
return rootView;
}
@Override
public void onClick(View v) {
switch (v.getId())
{
case R.id.LL_aboute:
break;
case R.id.LL_aboute2:
break;
case R.id.LL_add:
startActivity(new Intent(getContext(),AddTaskActivity.class));
break;
case R.id.LL_learning:
break;
case R.id.LL_learning2:
break;
case R.id.LL_display:
startActivity(new Intent(getContext(),DisplayFinalActivity.class));
break;
}
}
@Override
public void onResume() {
Locale locale = new Locale("en");
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getActivity().getBaseContext().getResources().updateConfiguration(config,
getActivity().getBaseContext().getResources().getDisplayMetrics());
}
}
答案 0 :(得分:1)
检查onAttach(上下文上下文)是否被调用?
<强>解决方案:强> 需要使用支持库片段,因为在API 23中添加了this method。 我测试了以下代码。它正在发挥作用。
INSERT
此外,您只需要在onAttach()方法中更改语言环境。
希望这会对你有所帮助。