齐齐哈尔微信公众号代运营【齐齐哈尔商城小程序开发】齐齐哈尔微信公众号编辑排版设计_齐齐哈尔微信小程序制作公司—齐齐哈尔微信公众号小程序托管服务中心
齐齐哈尔市区辖境,夏商周时期属索离国、
秦汉时为夫余国属境。
魏晋南北朝时期属鲜卑和豆莫篓。
隋唐时期属室韦都督府管辖。
辽金两代属上京路、东京路,属汉军万户居住地。 [9] 微信公众号开发
元代属辽阳行中书省所辖的开元路和水达达路。
明朝先归属大宁都指挥使司,后属奴儿干都司。
清初,齐齐哈尔地区属盛京内务府管辖,不久归属宁古塔将军。康熙二十二年(1683年)起,改属黑龙江将军管辖。康熙二十四年(1685年),设卜奎驿站,逐步成为黑龙江西部地区诸驿站的中心,并发展为村落。康熙三十年(1691年),清廷准奏在卜奎站建齐齐哈尔城,并授索伦总管玛布岱副都统衔,掌管建城事宜。康熙三十八年(1699年),黑龙江将军衙门移住齐齐哈尔城。直至清末,黑龙江将军衙门与齐齐哈尔副都统衙门合署管辖齐齐哈尔。光绪三十一年(1905年),在省城设黑龙江分巡道及其所属的黑水厅,管辖齐齐哈尔。次年,裁撤齐齐哈尔副都统。光绪三十三年(1907年),清政府废黑龙江将军,建黑龙江行省,将黑水厅改为龙江府,齐齐哈尔由省垣巡警局和龙江府管辖。
android:childDivider:指定各组内子类表项之间的分隔条,图片不会完全显示, 分离子列表项的是一条直线
android:childIndicator:显示在子列表旁边的Drawable对象,可以是一个图像
android:childIndicatorEnd:子列表项指示符的结束约束位置
android:childIndicatorLeft:子列表项指示符的左边约束位置
android:childIndicatorRight:子列表项指示符的右边约束位置
android:childIndicatorStart:子列表项指示符的开始约束位置
android:groupIndicator:显示在组列表旁边的Drawable对象,可以是一个图像
android:indicatorEnd:组列表项指示器的结束约束位置
android:indicatorLeft:组列表项指示器的左边约束位置
android:indicatorRight:组列表项指示器的右边约束位置
android:indicatorStart:组列表项指示器的开始约束位置
1. 扩展BaseExpandableListAdpter实现ExpandableAdapter。
2. 使用SimpleExpandableListAdpater将两个List集合包装成ExpandableAdapter
3. 使用simpleCursorTreeAdapter将Cursor中的数据包装成SimpleCuroTreeAdapter 本节示例使用的是第一个,扩展BaseExpandableListAdpter,我们需要重写该类中的相关方法, 下面我们通过一个代码示例来体验下!
我们来看下实现的效果图:
下面我们就来实现上图的这个效果:
核心是重写BaseExpandableListAdpter,其实和之前写的普通的BaseAdapter是类似的, 但是BaseExpandableListAdpter则分成了两部分:组和子列表,具体看代码你就知道了!
另外,有一点要注意的是,重写isChildSelectable()方法需要返回true,不然不会触发 子Item的点击事件!下面我们来写写:
首先是组和子列表的布局:
item_exlist_group.xml:
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" android:padding="5dp"> <TextView android:id="@+id/tv_group_name" android:layout_width="match_parent" android:layout_height="56dp" android:gravity="center_vertical" android:paddingLeft="30dp" android:text="AP" android:textStyle="bold" android:textSize="20sp" /></LinearLayout>
齐齐哈尔微信公众号代运营【齐齐哈尔商城小程序开发】齐齐哈尔微信公众号编辑排版设计_齐齐哈尔微信小程序制作公司—齐齐哈尔微信公众号小程序托管服务中心