我不知道如何为 android 创建一个网格,我可以在每个框上添加边框和背景。
最好的方法是什么?
目前我有一个RelativeLayout,我在其中放置了一些Button,但很难轻松修改它们。
谢谢 :)
我不知道如何为 android 创建一个网格,我可以在每个框上添加边框和背景。
最好的方法是什么?
目前我有一个RelativeLayout,我在其中放置了一些Button,但很难轻松修改它们。
谢谢 :)
这完全取决于您需要什么,但是您检查过 GridView 吗?http://developer.android.com/guide/topics/ui/layout/gridview.html
看看这些链接。
它可能会帮助你。
用于在GridLayout
.
layout
在 res/drawable 中创建一个xml 文件:
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#FFFFFF" />
<stroke android:width="1dp" android:color="#000000" />
<padding android:left="1dp" android:top="1dp" android:right="1dp" android:bottom="1dp" /></shape>
将背景添加到 imageview:
android:background="@drawable/xmlFileName"
通过编程:
imageview.setBackgroundResource(R.drawable.xmlFileName);