Android学习笔记——UI设计

版权声明:本文为博主原创文章,转载注明出处即可。 https://blog.csdn.net/SherlockHolmes_/article/details/65630582

在Android应用中,UI(User Interface)界面是人与程序之间数据传递,交互的重要媒介和对话接口。Android程序开发最重要的一个环节就是界面处理,界面的美观程度直接影响用户的第一印象,因此,开发一个整齐,美观的界面至关重要。

VIew和ViewGroup
Android应用的界面是由View和ViewGroup对象构建而成的。View类是Android系统平台上用户界面表示的基本单元,View的一些子类被统称为Widgets,它们提供了诸如文本输入框和按钮之类的UI对象的完整实现。
ViewGroup是View的一个扩展,它可以容纳多个View,通过ViewGroup类可以创建有联系的子View组成的复合控件。

在Android UI设计中需重点掌握UI中的布局类型,掌握样式和主题,了解程序国际化的问题。

下面通过一个“手机页面信息”Demo进行简单的UI设计。

设计思路(实现原理)
1)将准备好的八个图标复制到res/drawable文件夹下
2)创建一个垂直的线性布局,并在线性布局中创建4个相对布局
3)在相对布局中添加相应的TextView
4)在values文件下的style.xml文件中存放抽取出来的样式
5)创建values-zh-rCN、values-en-rUS文件夹,并在文件夹中创建strings.xml文件

1,创建程序,创建一个空的Activity命名为FirstActivity,在activity_first.xml中写入相对应的布局文件。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.a19864.lab_3.MainActivity">

    <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="10dp">
            <TextView
                style="@style/tv_style"
                android:layout_alignParentLeft="true"
                android:layout_marginLeft="10dp"
                android:drawableTop="@drawable/clound"
                android:text="@string/_cloud" />
            <TextView
                style="@style/tv_style"
                android:layout_alignParentRight="true"
                android:layout_marginRight="10dp"
                android:drawableTop="@drawable/bluetooth"
                android:text="@string/_bluetooth" />
        </RelativeLayout>
        <RelativeLayout style="@style/h_wrap_content"
            android:layout_marginTop="10dp">
            <TextView
                style="@style/tv_style"
                android:layout_alignParentLeft="true"
                android:layout_marginLeft="10dp"
                android:drawableTop="@drawable/gesture"
                android:text="@string/_gesture" />
            <TextView
                style="@style/tv_style"
                android:layout_alignParentRight="true"
                android:layout_marginRight="10dp"
                android:drawableTop="@drawable/gps"
                android:text="@string/_gps" />
        </RelativeLayout>
        <RelativeLayout style="@style/h_wrap_content"
            android:layout_marginTop="10dp">
            <TextView
                style="@style/tv_style"
                android:layout_alignParentLeft="true"
                android:layout_marginLeft="10dp"
                android:drawableTop="@drawable/info"
                android:text="@string/_system_info" />
            <TextView
                style="@style/tv_style"
                android:layout_alignParentRight="true"
                android:layout_marginRight="10dp"
                android:drawableTop="@drawable/internet"
                android:text="@string/_internet" />
        </RelativeLayout>
        <RelativeLayout style="@style/h_wrap_content"
            android:layout_marginTop="10dp">
            <TextView
                style="@style/tv_style"
                android:layout_alignParentLeft="true"
                android:layout_marginLeft="10dp"
                android:drawableTop="@drawable/language"
                android:text="@string/_language" />
            <TextView
                style="@style/tv_style"
                android:layout_alignParentRight="true"
                android:layout_marginRight="10dp"
                android:drawableTop="@drawable/notifycation"
                android:text="@string/_set_notifycation" />
        </RelativeLayout>
    </LinearLayout>

</RelativeLayout>

2,将布局文件中的样式文件单独抽取,写入style.xml文件中。

resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>
    <style name="AppBaseTheme" parent="android:Theme.Light">
    </style>
    <!-- 宽 match——parent 高  wrap_content-->
    <style name="h_wrap_content">
        <item name="android:layout_width">match_parent</item>
        <item name="android:layout_height">wrap_content</item>
    </style>
    <!-- 宽高都 match——parent -->
    <style name="tv_style">
        <item name="android:layout_width">145dp</item>
        <item name="android:layout_height">90dp</item>
        <item name="android:gravity">center</item>
        <item name="android:paddingTop">8dp</item>
        <item name="android:paddingBottom">8dp</item>
        <item name="android:drawablePadding">5dp</item>
        <item name="android:background">@android:color/white</item>
    </style>

</resources>

3,选择Project视图下,在app-src-main-res目录下创建values-zh-rCN、values-en-rUS文件夹,并在这两个文件夹下创建相应的strings.xml文件,进行国际化。

values-zh-rCN文件夹下的strings.xml文件如下所示:
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">手机信息页面</string>
    <string name="menu_settings">设置</string>
    <string name="hello_world">你好,世界!</string>
    <string name="_cloud">云通信</string>
    <string name="_bluetooth">蓝牙</string>
    <string name="_gesture">自定义手势</string>
    <string name="_gps">定位</string>
    <string name="_system_info">系统信息</string>
    <string name="_internet">网络</string>
    <string name="_language">语言设置</string>
    <string name="_set_notifycation">通知栏设置</string>
</resources>
values-en-rUS文件夹下的strings.xml文件如下所示:
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">phoneInfo</string>
    <string name="menu_settings">Settings</string>
    <string name="hello_world">Hello world!</string>
    <string name="_cloud">Cloud</string>
    <string name="_bluetooth">Bluetooth</string>
    <string name="_gesture">Gesture</string>
    <string name="_gps">Gps</string>
    <string name="_system_info">SystemInfo</string>
    <string name="_internet">Internet</string>
    <string name="_language">Language</string>
    <string name="_set_notifycation">Notifycation</string>
</resources>

4,接下来需要在FirstActivity中编写与用户交互的逻辑代码。

public class FirstActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_first);
    }
}

5,运行结果。

猜你喜欢

转载自blog.csdn.net/SherlockHolmes_/article/details/65630582