手机信息页面设置

    xiaoxiao2021-03-25  97

    创建一个线性布局

    将图片导入drawable文件中

    创建drawable-en-rUS,drawable-zh-rCN,并创建values-zh-rCNvalues-en-rUS文件夹

    并在values-zh-rCN,values-en-rUS编写代码

    修改成国际化

    在线性布局中创建垂直,然后创建四个相对布局,在相对布局中添加相应的TextView

    <?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:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@android:color/darker_gray" tools:context=".MainActivity"> <RelativeLayout style="@style/h_wrap_content" android:layout_marginTop="25dp"> <TextView style="@style/ty_style" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_marginLeft="25dp" android:drawableTop="@drawable/clound" android:text="@string/_cloud"/> <TextView style="@style/ty_style" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_marginRight="25dp" android:drawableTop="@drawable/bluetooth" android:text="@string/_bluetooth"/> </RelativeLayout> <RelativeLayout style="@style/h_wrap_content" android:layout_marginTop="25dp"> <TextView style="@style/ty_style" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_marginLeft="25dp" android:drawableTop="@drawable/gesture" android:text="@string/_gesture"/> <TextView style="@style/ty_style" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_marginRight="25dp" android:drawableTop="@drawable/gps" android:text="@string/_gps"/> </RelativeLayout> <RelativeLayout style="@style/h_wrap_content" android:layout_marginTop="25dp"> <TextView style="@style/ty_style" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_marginLeft="25dp" android:drawableTop="@drawable/info" android:text="@string/_system_info"/> <TextView style="@style/ty_style" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_marginRight="25dp" android:drawableTop="@drawable/internet" android:text="@string/_internet"/> </RelativeLayout> <RelativeLayout style="@style/h_wrap_content" android:layout_marginTop="25dp"> <TextView style="@style/ty_style" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_marginLeft="25dp" android:drawableTop="@drawable/language" android:text="@string/_language"/> <TextView style="@style/ty_style" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_marginRight="25dp" android:drawableTop="@drawable/notifycation" android:text="@string/_set_notifycation"/> </RelativeLayout> </LinearLayout> 运行程序如下:

    转载请注明原文地址: https://ju.6miu.com/read-34224.html

    最新回复(0)