我不知道如何为Android创建一个网格,我可以在每个框中添加边框和背景。
最好的方法是什么?
目前我有一个RelativeLayout,我将一些Button放入其中,但很难轻易修改它们。
谢谢:)
答案 0 :(得分:0)
这完全取决于你需要什么,但是你检查过GridView吗? http://developer.android.com/guide/topics/ui/layout/gridview.html
答案 1 :(得分:0)
看看这些链接。
它可能对你有帮助。
<强> Link1 强>
<强> Link2 强>
用于在GridLayout
内的每个图像视图上设置边框。
在res / drawable中创建一个layout
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);