创建线性布局
国际化
创建drawable-en-rUS,drawable-zh-rCN,values-en-rUS,values-zh-rCN四个文件夹,将strings.xml分别导入values-en-rUS和values-zh-rCN两个文件夹中
在values-en-rUS文件夹的string.xml中进行编辑,在values-zh-rCN中的string.xml中编辑
在线性布局中编辑
<?xml version="1.0" encoding="utf-8"?> <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:background="@android:color/darker_gray" android:orientation="vertical" tools:context=".MainActivity" > <RelativeLayout style="@style/h_wrap_content" android:layout_marginTop="25dp"> <TextView style="@style/tv_style" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_marginLeft="30dp" android:drawableTop="@drawable/clound" android:text="@string/_cloud" /> <TextView style="@style/tv_style" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_marginRight="30dp" android:drawableTop="@drawable/bluetooth" android:text="@string/_bluetooth" /> </RelativeLayout> <RelativeLayout style="@style/h_wrap_content" android:layout_marginTop="25dp"> <TextView style="@style/tv_style" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_marginLeft="30dp" android:drawableTop="@drawable/gesture" android:text="@string/_gesture" /> <TextView style="@style/tv_style" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_marginRight="30dp" android:drawableTop="@drawable/gps" android:text="@string/_gps" /> </RelativeLayout> <RelativeLayout style="@style/h_wrap_content" android:layout_marginTop="25dp"> <TextView style="@style/tv_style" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_marginLeft="30dp" android:drawableTop="@drawable/info" android:text="@string/_system_info" /> <TextView style="@style/tv_style" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_marginRight="30dp" android:drawableTop="@drawable/internet" android:text="@string/_internet" /> </RelativeLayout> <RelativeLayout style="@style/h_wrap_content" android:layout_marginTop="25dp"> <TextView style="@style/tv_style" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_marginLeft="30dp" android:drawableTop="@drawable/language" android:text="@string/_language" /> <TextView style="@style/tv_style" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_marginRight="30dp" android:drawableTop="@drawable/notifycation" android:text="@string/_set_notifycation" /> </RelativeLayout> </LinearLayout> 运行