Android学习(三)- 控制UI界面

1. 使用xml控制(简单但不灵活)

把页面布局代码写在xml()当中将布局和java逻辑分离,程序结构更加明了

I. 编写res/layout/~.xml文件

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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="@mipmap/bg"  
    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.mingrisoft.MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:textSize="18sp"
        android:textColor="#115572"
        android:text="@string/start" />

</FrameLayout>
  • layout_gravity设置居中
  • text="@string/start"是定义的字符串资源,start是strings.xml里面定义的name属性,按这种格式书写即可

II. java代码设置显示

setContentView(R.layout.activity_main);

  • activity_main是xml文件名字
public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}
  • 左图为背景图


    哈哈哈.jpg

2. 使用java代码控制(灵活但逻辑复杂)

完全通过java代码控制界面,不用编写xml文件,具体流程:

I. 创建MainActivity类,继承自AppCompatActivity

public class MainActivity extends AppCompatActivity {}

II. 创建布局管理器

FrameLayout frameLayout = new FrameLayout(this);        // 创建帧布局管理器
frameLayout.setBackgroundResource(R.mipmap.bg);         //设置背景
setContentView(frameLayout);                            // 设置在Activity中显示frameLayout

III. 创建其他需要显示的组件并添加到布局管理器

text1 = new TextView(this);
text1.setText("开始游戏");                              //设置显示文字
text1.setTextSize(TypedValue.COMPLEX_UNIT_SP, 18);  // 设置文字大小,单位为SP(缩放像素)
text1.setTextColor(Color.rgb(17, 85, 114));             // 设置文字的颜色
FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(
         ViewGroup.LayoutParams.WRAP_CONTENT,
         ViewGroup.LayoutParams.WRAP_CONTENT);           //创建保存布局参数的对象
params.gravity = Gravity.CENTER;                         //设置居中显示
text1.setLayoutParams(params);                           //设置布局参数

frameLayout.addView(text1);                             // 将text1添加到布局管理器中

IV. 添加其他事件(了解)

text1.setOnClickListener(new OnClickListener() {    // 为text1添加单击事件监听器
            @Override
            public void onClick(View v) {
                new AlertDialog.Builder(MainActivity.this).setTitle("系统提示") // 设置对话框的标题
                        .setMessage("游戏有风险,进入需谨慎,真的要进入吗?")    // 设置对话框的显示内容
                        .setPositiveButton("确定",                               // 为确定按钮添加单击事件
                                new DialogInterface.OnClickListener() {
                                    @Override
                                    public void onClick(DialogInterface dialog, int which) {
                                        Log.i("桌面台球", "进入游戏");           // 输出消息日志
                                    }
                                }).setNegativeButton("退出",                     // 为取消按钮添加单击事件
                        new DialogInterface.OnClickListener() {
                            @Override
                            public void onClick(DialogInterface dialog, int which) {
                                Log.i("桌面台球", "退出游戏");                   // 输出消息日志
                                finish();                                        // 结束游戏
                            }
                        }).show();                                               // 显示对话框
            }
        });

全部代码

package com.mingrisoft;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.graphics.Color;
import android.util.Log;
import android.util.TypedValue;
import android.view.Gravity;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.FrameLayout;

import android.widget.TextView;

public class MainActivity extends AppCompatActivity {
    public TextView text1;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        FrameLayout frameLayout = new FrameLayout(this);        // 创建帧布局管理器
        frameLayout.setBackgroundResource(R.mipmap.bg);         //设置背景
        setContentView(frameLayout);                            // 设置在Activity中显示frameLayout
        text1 = new TextView(this);
        text1.setText("开始游戏");                              //设置显示文字
        text1.setTextSize(TypedValue.COMPLEX_UNIT_SP, 18);  // 设置文字大小,单位为SP(缩放像素)
        text1.setTextColor(Color.rgb(17, 85, 114));             // 设置文字的颜色
        FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(
                ViewGroup.LayoutParams.WRAP_CONTENT,
                ViewGroup.LayoutParams.WRAP_CONTENT);            //创建保存布局参数的对象
        params.gravity = Gravity.CENTER;                         //设置居中显示
        text1.setLayoutParams(params);                           //设置布局参数
        text1.setOnClickListener(new OnClickListener() {    // 为text1添加单击事件监听器
            @Override
            public void onClick(View v) {
                new AlertDialog.Builder(MainActivity.this).setTitle("系统提示") // 设置对话框的标题
                        .setMessage("游戏有风险,进入需谨慎,真的要进入吗?")    // 设置对话框的显示内容
                        .setPositiveButton("确定",                               // 为确定按钮添加单击事件
                                new DialogInterface.OnClickListener() {
                                    @Override
                                    public void onClick(DialogInterface dialog, int which) {
                                        Log.i("桌面台球", "进入游戏");           // 输出消息日志
                                    }
                                }).setNegativeButton("退出",                     // 为取消按钮添加单击事件
                        new DialogInterface.OnClickListener() {
                            @Override
                            public void onClick(DialogInterface dialog, int which) {
                                Log.i("桌面台球", "退出游戏");                   // 输出消息日志
                                finish();                                        // 结束游戏
                            }
                        }).show();                                               // 显示对话框
            }
        });
        frameLayout.addView(text1);                             // 将text1添加到布局管理器中
    }
}


3. xml+java代码混合控制(推荐)

基础布局以及简单组件利用xml编写,复杂组件和变动大的布局用java实现

I. 编写xml布局文件完成基础布局

<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/layout"
    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"
    android:orientation="horizontal"
    android:rowCount="3"
    android:columnCount="4"
    tools:context="com.mingrisoft.MainActivity">

</GridLayout>

II. 编写java文件添加相应组件

public class MainActivity extends AppCompatActivity {
    private  ImageView[] img=new ImageView[12];              //声明一个保存ImageView组件的数组
    private int[] imagePath=new int[]{
            R.mipmap.img01,R.mipmap.img02,R.mipmap.img03,R.mipmap.img04,
            R.mipmap.img05,R.mipmap.img06,R.mipmap.img07,R.mipmap.img08,
            R.mipmap.img09,R.mipmap.img10,R.mipmap.img11,R.mipmap.img12
    };                                                          //声明并初始化一个保存访问图片的数组
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        GridLayout layout=(GridLayout)findViewById(R.id.layout);//获取XML文件中定义的线性布局管理器
        for(int i=0;i<imagePath.length;i++){
            img[i]=new ImageView(MainActivity.this);            //创建一个ImageView组件
            img[i].setImageResource(imagePath[i]);              //为ImageView组件指定要显示的图片
            img[i].setPadding(2, 2,2, 2);                       //设置ImageView组件的内边距
            ViewGroup.LayoutParams params=new ViewGroup.LayoutParams(116,68);//设置图片的宽度和高度
            img[i].setLayoutParams(params);                     //为ImageView组件设置布局参数
            layout.addView(img[i]);                             //将ImageView组件添加到布局管理器中
        }
    }
}

4. 开发自定义View

I. xml文件创建布局管理

<?xml version="1.0" encoding="utf-8"?>
     <FrameLayout 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="@mipmap/background"
         android:id="@+id/mylayout"
         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.mingrisoft.MainActivity" >
     </FrameLayout>

II. java代码创建自定义的VIew

public class RabbitView extends View {
        public float bitmapX;                       // 兔子显示位置的X坐标
        public float bitmapY;                       // 兔子显示位置的Y坐标
        
            }

III. 编写构造方法

public RabbitView(Context context) {            // 重写构造方法
                super(context);
                bitmapX = 290;                          // 设置兔子的默认显示位置的X坐标
                bitmapY = 130;                          // 设置兔子的默认显示位置的Y坐标
            }

IV. 重写ondraw方法

@Override
        protected void onDraw(Canvas canvas) {
                super.onDraw(canvas);
                Paint paint = new Paint();                  // 创建并实例化Paint的对象
                Bitmap bitmap = BitmapFactory.decodeResource(this.getResources(),
                        R.mipmap.rabbit);                   // 根据图片生成位图对象
                canvas.drawBitmap(bitmap, bitmapX, bitmapY, paint); // 绘制小兔子
                if (bitmap.isRecycled()) {                  // 判断图片是否回收
                        bitmap.recycle();                   // 强制回收图片
                    }
            }

完整代码

package mingrisoft.com;

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.view.View;


public class RabbitView extends View {
        public float bitmapX;                       // 兔子显示位置的X坐标
        public float bitmapY;                       // 兔子显示位置的Y坐标
        public RabbitView(Context context) {            // 重写构造方法
                super(context);
                bitmapX = 290;                          // 设置兔子的默认显示位置的X坐标
                bitmapY = 130;                          // 设置兔子的默认显示位置的Y坐标
            }
        @Override
        protected void onDraw(Canvas canvas) {
                super.onDraw(canvas);
                Paint paint = new Paint();                  // 创建并实例化Paint的对象
                Bitmap bitmap = BitmapFactory.decodeResource(this.getResources(),
                        R.mipmap.rabbit);                   // 根据图片生成位图对象
                canvas.drawBitmap(bitmap, bitmapX, bitmapY, paint); // 绘制小兔子
                if (bitmap.isRecycled()) {                  // 判断图片是否回收
                        bitmap.recycle();                   // 强制回收图片
                    }
            }
     }


V. 在Activity中创建并实例化对象

package mingrisoft.com;

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.widget.FrameLayout;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
         FrameLayout frameLayout=(FrameLayout)findViewById(R.id.mylayout);  // 获取帧布局管理器
         final RabbitView rabbit=new RabbitView(this);          // 创建并实例化RabbitView类
         //为小兔子添加触摸事件监听
         rabbit.setOnTouchListener(new View.OnTouchListener() {

                        @Override
                public boolean onTouch(View v, MotionEvent event) {
                        rabbit.bitmapX=event.getX();            // 设置小兔子显示位置的X坐标
                        rabbit.bitmapY=event.getY();            // 设置小兔子显示位置的Y坐标
                        rabbit.invalidate();                    //重绘rabbit组件
                        return true;
                    }
             });
         frameLayout.addView(rabbit);                           //将rabbit添加到布局管理器中
    }


}
image.png
  • 素材(提取码:lewl )
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,258评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,335评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,225评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,126评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,140评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,098评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,018评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,857评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,298评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,518评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,678评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,400评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,993评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,638评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,801评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,661评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,558评论 2 352

推荐阅读更多精彩内容