TableView |
---|
名字 | 摘要 |
---|---|
TableView | 表格View |
<ysn.com.view.TableView
android:id="@+id/main_activity_table_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:tv_head_layout_res_id="@layout/layout_table_head"
app:tv_left_top_head_layout_res_id="@layout/layout_table_left_top_head" />
tableView.setFirstColumnAdapter(firstColumnAdapter).setContentAdapter(contentAdapter);
2. 配置属性(Attributes)
name | format | description |
---|---|---|
tv_left_top_head_layout_res_id | reference | 左上角布局 |
tv_head_layout_res_id | reference | 头布局 |
在项目的 build.gradle
文件中配置仓库地址。
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
在需要添加依赖的 Module 下添加以下信息,使用方式和普通的远程仓库一样。
implementation 'com.github.yangsanning:TableView:1.0.0'