【文件属性】:
文件名称:AsymmetricGridView-使用ListView实现的GridView效果.zip
文件大小:526KB
文件格式:ZIP
更新时间:2022-10-13 21:59:37
开源项目
使用ListView实现的GridView效果,其中每个子元素可以设置自己的占位,比如当前元素占几行几列(rowSpan 和columnSpan),所以看起来就像一个不规则的随机的网格布局。项目地址:https://github.com/felipecsl/AsymmetricGridView 效果图:使用说明:xmlactivity中:@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
listView = (AsymmetricGridView) findViewById(R.id.listView);
// Choose your own preferred column width
listView.setRequestedColumnWidth(Utils.dpToPx(this, 120));
final List items = new ArrayList<>();
// initialize your items array
adapter = new ListAdapter(this, listView, items);
listView.setAdapter(adapter);
}支持追加更多的元素:// Will append more items at the end of the adapter.
listView.getAdapter().appendItems(moreItems);
// resetting the adapter items. Will clear the adapter
// and add the new items.
listView.getAdapter().setItems(items);设置是否重新排列达到更好的显示效果:// Setting to true will move items up and down to better use the space
// Defaults to false.
listView.setAllowReordering(true);
listView.isAllowReordering(); // true设置item的占位:item 一般这样定义:public DemoItem(final int columnSpan, final int rowSpan, int position) {
this.columnSpan = columnSpan;
this.rowSpan = rowSpan;
this.position = position;
}columnSpan 和rowSpan分别代表列占位和行占位。说明:目前当item的rowSpan = 2 columnSpan = 2时可以达到最佳的状态。这个后续会继续改进。item的大小越统一,效率越高,特殊大小的元素少于20%是比较理想的状态。不然没法在不预留很多空位的情况下,合理的显示。
【文件预览】:
AsymmetricGridView-master
----.gitignore(86B)
----gradle()
--------wrapper()
----README.md(4KB)
----.buildscript()
--------deploy_snapshot.sh(1KB)
----build.gradle(378B)
----library()
--------build.gradle(600B)
--------gradle-maven-push.gradle(4KB)
--------proguard-rules.txt(674B)
--------src()
--------gradle.properties(77B)
----CHANGELOG.md(1KB)
----gradlew.bat(2KB)
----gradlew(5KB)
----screenshots()
--------ss_4_cols.png(99KB)
--------ss_3_cols.png(86KB)
--------ss_2_cols.png(80KB)
--------ss_5_cols.png(113KB)
----app()
--------.gitignore(7B)
--------build.gradle(796B)
--------proguard-rules.txt(674B)
--------src()
----gradle.properties(2KB)
----LICENSE.txt(1KB)
----.travis.yml(797B)
----settings.gradle(27B)