一、效果图
二、描述
更改Android项目中的语言,这个作用于只用于此APP,不会作用于整个系统
三、解决方案
(一)布局文件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:padding="20dp" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/hellow" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="changeLanguage" android:text="语言切换" /> </LinearLayout>
(二)MainActivity主页面
package com.example.chinesepage; import java.util.Locale; import android.app.Activity; import android.content.Intent; import android.content.res.Configuration; import android.content.res.Resources; import android.os.Bundle; import android.util.DisplayMetrics; import android.view.View; import android.widget.Toast; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } /** * 点击按钮,更换语言 * * @param view */ public void changeLanguage(View view) { Resources resources = getResources(); Configuration configuration = resources.getConfiguration(); // 获取资源配置 if (configuration.locale.equals(Locale.CHINA)) { // 判断当前语言是否是中文 configuration.locale = Locale.ENGLISH; // 设置当前语言配置为英文 } else { configuration.locale = Locale.CHINA; // 设置当前语言配置为中文 } DisplayMetrics metrics = new DisplayMetrics(); resources.updateConfiguration(configuration, metrics); // 更新配置文件 sendBroadcast(new Intent("language")); // 发送广播,广播接受后重新开启此Activtiy以重新初始化界面语言. // Intent intent = new Intent(MainActivity.this, MainActivity.class); //或者可以直接跳转MainActivity // intent.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION); //去除掉跳转的动画,让用户看起来好像没有跳转的感觉 // startActivity(intent); finish(); } }
(三)ChangeReceiver广播类
package com.example.chinesepage; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; /** * 自定义广播类 语言改变后重启Activity * * @author asus * */ public class ChangeReceiver extends BroadcastReceiver { private Intent mIntent; @Override public void onReceive(Context context, Intent intent) { mIntent = new Intent(context, MainActivity.class); mIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(mIntent); } }
(四)在Res下创建Values-en文件夹,复制String.xml,并且把里面的中文改成英文,实现国际化.
values/strings.xml
<resources> <string name="app_name">语言切换</string> <string name="hello_world">你好,World!</string> <string name="action_settings">设置</string> <string name="hellow">你好</string> </resources>
values-en/strings.xml
<resources> <string name="app_name">ChinesePage</string> <string name="hello_world">Hello world!</string> <string name="action_settings">Settings</string> <string name="hellow">Hellow</string> </resources>
(五)注册广播(这个别忘了~)
<receiver android:name="com.example.chinesepage.ChangeReceiver" > <intent-filter> <action android:name="language" /> </intent-filter> </receiver>
总结
以上就是详解Android更改APP语言模式的实现过程的全部内容,希望对大家开发Android有所帮助,如果有疑问欢迎留言讨论。
本文向大家介绍C语言模拟实现atoi函数的实例详解,包括了C语言模拟实现atoi函数的实例详解的使用技巧和注意事项,需要的朋友参考一下 C语言模拟实现atoi函数的实例详解 atoi函数,主要功能是将一个字符串转变为整数,例如将“12345”–>12345。但在实现过程中,我们难免会因为考虑不够全面而漏掉比较重要的几点,今天就总结一下实现atoi函数需要注意的地方。 1.指针为NULL 2.字符串
问题内容: 我发现了只在Android N设备上才能复制的真正奇怪的错误。 在浏览我的应用程序时,可以更改语言。这是更改它的代码。 该代码在我的巡回活动(带电话)中效果很好,但是在接下来的所有活动中,所有String资源都是错误的。屏幕旋转将其修复。我该怎么办?我应该以其他方式更改Android N的语言环境还是仅仅是系统错误? PS这是我发现的。第一次启动MainActivity时(在我的旅
本文向大家介绍Android应用App更新实例详解,包括了Android应用App更新实例详解的使用技巧和注意事项,需要的朋友参考一下 前言:现在一般的Android软件都是需要不断更新的,当你打开某个app的时候,如果有新的版本,它会提示你有新版本需要更新。该项目实现的就是这个功能。并且有强制更新和更新提示两种方式,当有更新时,会弹出一个提示框,点击下载,则在通知来创建一个进度条进行下载,点击取
18.6 解释器模式总结 解释器模式为自定义语言的设计和实现提供了一种解决方案,它用于定义一组文法规则并通过这组文法规则来解释语言中的句子。虽然解释器模式的使用频率不是特别高,但是它在正则表达式、XML文档解释等领域还是得到了广泛使用。与解释器模式类似,目前还诞生了很多基于抽象语法树的源代码处理工具,例如Eclipse中的Eclipse AST,它可以用于表示Java语言的语法结构,用户可以通过扩
18.5 再谈Context的作用 在解释器模式中,环境类Context用于存储解释器之外的一些全局信息,它通常作为参数被传递到所有表达式的解释方法interpret()中,可以在Context对象中存储和访问表达式解释器的状态,向表达式解释器提供一些全局的、公共的数据,此外还可以在Context中增加一些所有表达式解释器都共有的功能,减轻解释器的职责。 在上面的机器人
18.4 完整解决方案 为了能够解释机器人控制指令,Sunny软件公司开发人员使用解释器模式来设计和实现机器人控制程序。针对五条文法规则,分别提供五个类来实现,其中终结符表达式direction、action和distance对应DirectionNode类、ActionNode类和DistanceNode类,非终结符表达式expression和composite对应SentenceNode类和A