Android 中使用代码动态网格布局(1),2024年教你增加拿到BAT等大厂offer几率

本文介绍如何在Android中通过代码实现动态网格布局,详细解析了XML文件和Java代码,展示了如何创建一个适应不同数据量的布局。通过实例讲解,提升Android开发技能,助力获得大厂offer。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

图片资源随便找的,将就将就吧外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传

二、给出xml文件布局

===========

<?xml version="1.0" encoding="utf-8"?>

<ScrollView xmlns:android=“http://schemas.android.com/apk/res/android”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:background=“@android:color/white” >

<LinearLayout

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:orientation=“vertical” >

<RelativeLayout

android:id=“@+id/layout_titlebar”

android:layout_width=“match_parent”

android:layout_height=“48dp”

android:layout_marginBottom=“20dp”

android:background=“#ed4255” >

<TextView

android:id=“@+id/text_title”

style=“@style/Text.Title”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:gravity=“center”

android:text=“业务功能介绍” />

<LinearLayout

android:id=“@+id/layout_more”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:orientation=“vertical”

android:padding=“4dp” />

三、子条目xml布局文件

============

<FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”

android:layout_width=“match_parent”

android:layout_height=“84dp”

android:layout_weight=“1.0”

android:clickable=“true” >

<ImageView

android:id=“@+id/image_icon”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_gravity=“center_horizontal”

android:layout_marginTop=“16dp”

android:duplicateParentState=“true”

android:src=“@drawable/ic_department_01_normal” />

<TextView

android:id=“@+id/text_title”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_gravity=“center_horizontal|bottom”

android:background=“@null”

android:layout_marginBottom=“6dp”

android:gravity=“center”

android:duplicateParentState=“true”

android:textColor=“@drawable/text_service_color”

android:textSize=“14dp” />

如图:

四、java代码动态布局

============

/**

  • @author gao_chun

*/

public class MainActivity extends Activity implements OnClickListener{

private ViewGroup mMoreLayout; //父布局容器(动态加载的资源图片和文字等布局都将添加在其里面)

/* (non-Javadoc)

  • @see app.ui.TitleActivity#onCreate(android.os.Bundle)

*/

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

initUI(); //保证启动方法的唯一性

}

private void initUI() {

setContentView(R.layout.activity_main);

//找到该容器(这里的控件为LinearLayout,转换为ViewGroup是因为ViewGroup是容器的基类)

mMoreLayout = (ViewGroup) findViewById(R.id.layout_more);

//由于文字也是动态生成,使用android中array文件定义资源文件,并取出

final String[] categories = getResources().getStringArray(R.array.categories);

final int size = categories.length; //String[]的长度

final int rowCount = size / 3; //需要布局的行数(每行三个)

/**

  • 动态添加布局方法封装

  • 参数 1.父容器 2.资源文字数组 3.从第几个开始 4.行数

*/

fillViews(mMoreLayout, categories, 0, rowCount);

}

private void fillViews(ViewGroup layout, String[] categories, int start, int end) {

// 表格第一条线

View.inflate(this, R.layout.layout_line_horizonal, layout);

for (int i = start; i < end; i++) {

//找到索引,便于根据索引添加图片文件和文字

final int firstIndex = i * 3;

final int secondIndex = i * 3 + 1;

final int thirdIndex = i * 3 + 2;

final String firstCategory = categories[firstIndex];

final String secondCategory = categories[secondIndex];

final String thirdCategory = categories[thirdIndex];

//这里控制的是加载本地图片,通过应用包命找到 有规则命名的图片资源文件

//—>因为这里有两种效果,一是默认的图片,二是按下触发后的图片和文字

final int firstDrawableNormal = getResources().getIdentifier(String.format(“ic_department_%02d_normal”,

firstIndex + 1),“drawable”,getApplicationContext().getPackageName());

final int secondDrawableNormal = getResources().getIdentifier(String.format(“ic_department_%02d_normal”,

secondIndex + 1),“drawable”,getApplicationContext().getPackageName());

final int thirdDrawableNormal = getResources().getIdentifier(String.format(“ic_department_%02d_normal”,

thirdIndex + 1),“drawable”,getApplicationContext().getPackageName());

final int firstDrawablePressed = getResources().getIdentifier(String.format(“ic_department_%02d_pressed”,

firstIndex + 1),“drawable”,getApplicationContext().getPackageName());

final int secondDrawablePressed = getResources().getIdentifier(String.format(“ic_department_%02d_pressed”,

secondIndex + 1),“drawable”,getApplicationContext().getPackageName());

final int thirdDrawablePressed = getResources().getIdentifier(String.format(“ic_department_%02d_pressed”,

thirdIndex + 1),“drawable”,getApplicationContext().getPackageName());

//这里是将上面找到的 默认图片 和 按下时的图片 放入到 StateListDrawable缓存中

final StateListDrawable firstDrawable = new StateListDrawable();

firstDrawable.addState(new int[]{android.R.attr.state_pressed}, getResources().getDrawable(firstDrawablePressed));

firstDrawable.addState(new int[]{}, getResources().getDrawable(firstDrawableNormal));

final StateListDrawable secondDrawable = new StateListDrawable();

secondDrawable.addState(new int[]{android.R.attr.state_pressed}, getResources().getDrawable(secondDrawablePressed));

自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则近万的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。

img

img

img

img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点,真正体系化!

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!

如果你觉得这些内容对你有帮助,可以扫码获取!!(备注:Android)

最后:学习总结——Android框架体系架构知识脑图(纯手绘xmind文档)

学完之后,若是想验收效果如何,其实最好的方法就是可自己去总结一下。比如我就会在学习完一个东西之后自己去手绘一份xmind文件的知识梳理大纲脑图,这样也可方便后续的复习,且都是自己的理解,相信随便瞟几眼就能迅速过完整个知识,脑补回来。

下方即为我手绘的Android框架体系架构知识脑图,由于是xmind文件,不好上传,所以小编将其以图片形式导出来传在此处,细节方面不是特别清晰。但可给感兴趣的朋友提供完整的Android框架体系架构知识脑图原件(包括上方的面试解析xmind文档)

除此之外,前文所提及的Alibaba珍藏版 Android框架体系架构 手写文档以及一本 《大话数据结构》 书籍等等相关的学习笔记文档,也皆可分享给认可的朋友!

——感谢大家伙的认可支持,请注意:点赞+点赞+点赞!!!

《互联网大厂面试真题解析、进阶开发核心学习笔记、全套讲解视频、实战项目源码讲义》点击传送门即可获取!

mind文件,不好上传,所以小编将其以图片形式导出来传在此处,细节方面不是特别清晰。但可给感兴趣的朋友提供完整的Android框架体系架构知识脑图原件(包括上方的面试解析xmind文档)
[外链图片转存中…(img-C9FwD8Ff-1712347004776)]

除此之外,前文所提及的Alibaba珍藏版 Android框架体系架构 手写文档以及一本 《大话数据结构》 书籍等等相关的学习笔记文档,也皆可分享给认可的朋友!

——感谢大家伙的认可支持,请注意:点赞+点赞+点赞!!!

《互联网大厂面试真题解析、进阶开发核心学习笔记、全套讲解视频、实战项目源码讲义》点击传送门即可获取!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值