XML与JAVA混合控制UI界面

原则:
一般将布局代码或变化不大的代码放入XML中,将复杂界面的代码放入JAVA中

1、在XML中实现布局管理器

<?xml version="1.0" encoding="utf-8"?>
<!-- 修改为网格布局管理器GridLayout,添加ID,排列方式horizontal,行数,列数 -->
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id = "@+id/layout"
    android:orientation="horizontal"
    android:rowCount="3"
    android:columnCount="4"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

</GridLayout>

2、JAVA中实现部件显示

package com.example.xmlandjavalayout;

import android.os.Bundle;
import android.view.ViewGroup;
import android.widget.GridLayout;
import android.widget.ImageView;

import androidx.appcompat.app.AppCompatActivity;

public class MainActivity extends AppCompatActivity {
    private ImageView[] img = new ImageView[12];
    private int[] imagePath = new int[]{//设置要访问的图片资源,前面要将12张图片放入mipmap中
            R.mipmap.img1, R.mipmap.img2, R.mipmap.img3, R.mipmap.img1,
            R.mipmap.img7, R.mipmap.img6, R.mipmap.img5, R.mipmap.img4,
            R.mipmap.img1, R.mipmap.img8, R.mipmap.img2, R.mipmap.img1,
    };

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

        GridLayout layout = (GridLayout) findViewById(R.id.layout);//获取网格管理器
        for (int i = 0; i < imagePath.length; i++) {
            img[i] = new ImageView(MainActivity.this);//创建ImageView组件
            img[i].setImageResource(imagePath[i]);//设置要显示的图片
            img[i].setPadding(2, 2, 2, 2);//设置ImageView的内边距
            ViewGroup.LayoutParams params = new ViewGroup.LayoutParams(200, 200);//设置图片的宽度及高度
            img[i].setLayoutParams(params);//将参数设置到ImageView中
            layout.addView(img[i]);//添加到布局管理器中

        }
    }
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值