├── README.txt ├── TreeView ├── .classpath ├── .project ├── AndroidManifest.xml ├── assets │ └── datadir │ │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ ├── format │ │ ├── prop-base │ │ │ └── cableinfo.db.svn-base │ │ └── text-base │ │ │ └── cableinfo.db.svn-base │ │ └── TreeViewData.db ├── bin │ ├── TreeView.apk │ ├── classes.dex │ ├── classes │ │ └── com │ │ │ └── tochange │ │ │ └── yang │ │ │ ├── R$attr.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R.class │ │ │ ├── TestTreeViewActivity$1.class │ │ │ ├── TestTreeViewActivity$2.class │ │ │ ├── TestTreeViewActivity$LoadDataToAppSpaceTask.class │ │ │ └── TestTreeViewActivity.class │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── ic_action_search.png │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ ├── ic_action_search.png │ │ │ └── ic_launcher.png │ │ └── drawable-xhdpi │ │ │ ├── ic_action_search.png │ │ │ └── ic_launcher.png │ └── resources.ap_ ├── gen │ └── com │ │ └── tochange │ │ └── yang │ │ └── R.java ├── proguard.cfg ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_action_search.png │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ ├── ic_action_search.png │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ ├── ic_action_search.png │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_test.xml │ │ └── commonchooselayout.xml │ ├── menu │ │ └── activity_test.xml │ ├── values-large │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── tochange │ └── yang │ └── TestTreeViewActivity.java ├── TreeViewLib ├── .classpath ├── .project ├── AndroidManifest.xml ├── bin │ ├── classes │ │ └── com │ │ │ └── tochange │ │ │ └── yang │ │ │ ├── DatabaseStruct.class │ │ │ ├── DbToAdapter.class │ │ │ ├── LoadTreeTask$1.class │ │ │ ├── LoadTreeTask.class │ │ │ ├── R$attr.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R.class │ │ │ ├── TreeListAdapter$1.class │ │ │ ├── TreeListAdapter$2.class │ │ │ ├── TreeListAdapter$3.class │ │ │ ├── TreeListAdapter$Holder.class │ │ │ ├── TreeListAdapter$OnTreeCallBack.class │ │ │ ├── TreeListAdapter.class │ │ │ ├── TreeNode.class │ │ │ └── log.class │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── ic_action_search.png │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ ├── ic_action_search.png │ │ │ ├── ic_launcher.png │ │ │ ├── tree_expand_off_nr.png │ │ │ └── tree_expand_on_nr.png │ │ └── drawable-xhdpi │ │ │ ├── ic_action_search.png │ │ │ └── ic_launcher.png │ └── treeviewlib.jar ├── gen │ └── com │ │ └── tochange │ │ └── yang │ │ └── R.java ├── proguard.cfg ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_action_search.png │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ ├── ic_action_search.png │ │ ├── ic_launcher.png │ │ ├── tree_expand_off_nr.png │ │ ├── tree_expand_on_nr.png │ │ └── treelist_selector_bg.xml │ ├── drawable-xhdpi │ │ ├── ic_action_search.png │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_main.xml │ │ ├── tree_item.xml │ │ └── tree_lay.xml │ ├── menu │ │ └── activity_main.xml │ ├── values-large │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── color.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── tochange │ └── yang │ ├── DatabaseStruct.java │ ├── DbToAdapter.java │ ├── LoadTreeTask.java │ ├── TreeListAdapter.java │ ├── TreeNode.java │ └── log.java └── device-2014-04-10-224251.png /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/README.txt -------------------------------------------------------------------------------- /TreeView/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TreeView/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | TreeView 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /TreeView/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 9 | 10 | 14 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /TreeView/assets/datadir/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 85 4 | /svn/DC-4601/!svn/ver/3451/01editing/03coding/trunk/AndroidUI/DC4601_new/assets/cable 5 | END 6 | cableinfo.db 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 98 10 | /svn/DC-4601/!svn/ver/3451/01editing/03coding/trunk/AndroidUI/DC4601_new/assets/cable/cableinfo.db 11 | END 12 | -------------------------------------------------------------------------------- /TreeView/assets/datadir/.svn/entries: -------------------------------------------------------------------------------- 1 | 8 2 | 3 | dir 4 | 3700 5 | http://172.16.1.105/svn/DC-4601/01editing/03coding/trunk/AndroidUI/DC4601_new/assets/cable 6 | http://172.16.1.105/svn/DC-4601 7 | 8 | 9 | 10 | 2013-11-13T04:33:21.500000Z 11 | 3451 12 | yangxj 13 | 14 | 15 | svn:special svn:externals svn:needs-lock 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 3e1aeaa0-ac72-4245-81cf-fac690dc179a 28 | 29 | cablepic 30 | dir 31 | 32 | cableinfo.db 33 | file 34 | 35 | 36 | 37 | 38 | 2013-11-13T04:27:30.855803Z 39 | a5604208ddaf76f7d6a60c41abfdd7d1 40 | 2013-11-13T04:33:21.500000Z 41 | 3451 42 | yangxj 43 | has-props 44 | 45 | -------------------------------------------------------------------------------- /TreeView/assets/datadir/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /TreeView/assets/datadir/.svn/prop-base/cableinfo.db.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /TreeView/assets/datadir/.svn/text-base/cableinfo.db.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/assets/datadir/.svn/text-base/cableinfo.db.svn-base -------------------------------------------------------------------------------- /TreeView/assets/datadir/TreeViewData.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/assets/datadir/TreeViewData.db -------------------------------------------------------------------------------- /TreeView/bin/TreeView.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/TreeView.apk -------------------------------------------------------------------------------- /TreeView/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/classes.dex -------------------------------------------------------------------------------- /TreeView/bin/classes/com/tochange/yang/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/classes/com/tochange/yang/R$attr.class -------------------------------------------------------------------------------- /TreeView/bin/classes/com/tochange/yang/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/classes/com/tochange/yang/R$color.class -------------------------------------------------------------------------------- /TreeView/bin/classes/com/tochange/yang/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/classes/com/tochange/yang/R$dimen.class -------------------------------------------------------------------------------- /TreeView/bin/classes/com/tochange/yang/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/classes/com/tochange/yang/R$drawable.class -------------------------------------------------------------------------------- /TreeView/bin/classes/com/tochange/yang/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/classes/com/tochange/yang/R$id.class -------------------------------------------------------------------------------- /TreeView/bin/classes/com/tochange/yang/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/classes/com/tochange/yang/R$layout.class -------------------------------------------------------------------------------- /TreeView/bin/classes/com/tochange/yang/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/classes/com/tochange/yang/R$menu.class -------------------------------------------------------------------------------- /TreeView/bin/classes/com/tochange/yang/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/classes/com/tochange/yang/R$string.class -------------------------------------------------------------------------------- /TreeView/bin/classes/com/tochange/yang/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/classes/com/tochange/yang/R$style.class -------------------------------------------------------------------------------- /TreeView/bin/classes/com/tochange/yang/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/classes/com/tochange/yang/R.class -------------------------------------------------------------------------------- /TreeView/bin/classes/com/tochange/yang/TestTreeViewActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/classes/com/tochange/yang/TestTreeViewActivity$1.class -------------------------------------------------------------------------------- /TreeView/bin/classes/com/tochange/yang/TestTreeViewActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/classes/com/tochange/yang/TestTreeViewActivity$2.class -------------------------------------------------------------------------------- /TreeView/bin/classes/com/tochange/yang/TestTreeViewActivity$LoadDataToAppSpaceTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/classes/com/tochange/yang/TestTreeViewActivity$LoadDataToAppSpaceTask.class -------------------------------------------------------------------------------- /TreeView/bin/classes/com/tochange/yang/TestTreeViewActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/classes/com/tochange/yang/TestTreeViewActivity.class -------------------------------------------------------------------------------- /TreeView/bin/res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /TreeView/bin/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TreeView/bin/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /TreeView/bin/res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /TreeView/bin/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TreeView/bin/res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /TreeView/bin/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TreeView/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/bin/resources.ap_ -------------------------------------------------------------------------------- /TreeView/gen/com/tochange/yang/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | 8 | package com.tochange.yang; 9 | 10 | public final class R { 11 | public static final class attr { 12 | } 13 | public static final class color { 14 | public static final int black=0x7f040002; 15 | public static final int text=0x7f040000; 16 | public static final int tree_node_bg=0x7f040001; 17 | } 18 | public static final class dimen { 19 | public static final int act_padding=0x7f050008; 20 | public static final int app_data_offset=0x7f050007; 21 | public static final int con_padding=0x7f050009; 22 | public static final int content_title=0x7f050004; 23 | public static final int content_tool=0x7f050005; 24 | public static final int content_tool_btn_height=0x7f050006; 25 | public static final int l_text_size=0x7f05000d; 26 | public static final int padding_large=0x7f05000c; 27 | public static final int padding_medium=0x7f05000b; 28 | public static final int padding_small=0x7f05000a; 29 | public static final int treenode_height=0x7f050000; 30 | public static final int treenode_icon_width=0x7f050003; 31 | public static final int treenode_line_offset=0x7f050002; 32 | public static final int treenode_offset=0x7f050001; 33 | } 34 | public static final class drawable { 35 | public static final int ic_action_search=0x7f020000; 36 | public static final int ic_launcher=0x7f020001; 37 | public static final int tree_expand_off_nr=0x7f020002; 38 | public static final int tree_expand_on_nr=0x7f020003; 39 | public static final int treelist_selector_bg=0x7f020004; 40 | } 41 | public static final class id { 42 | public static final int cancel_btn=0x7f090005; 43 | public static final int commonchoose_blank=0x7f090004; 44 | public static final int confirm_btn=0x7f090003; 45 | public static final int iv_app=0x7f09000d; 46 | public static final int iv_expanded=0x7f090008; 47 | public static final int iv_node=0x7f090009; 48 | public static final int lay_blank=0x7f090007; 49 | public static final int lay_content=0x7f090006; 50 | public static final int lay_tv_content=0x7f09000a; 51 | public static final int lv_tree=0x7f09000f; 52 | public static final int menu_settings=0x7f090010; 53 | public static final int t1=0x7f090000; 54 | public static final int t2=0x7f090001; 55 | public static final int tree=0x7f090002; 56 | public static final int tv_appdata=0x7f09000e; 57 | public static final int tv_description=0x7f09000b; 58 | public static final int tv_second_title=0x7f09000c; 59 | } 60 | public static final class layout { 61 | public static final int activity_main=0x7f030000; 62 | public static final int activity_test=0x7f030001; 63 | public static final int commonchooselayout=0x7f030002; 64 | public static final int tree_item=0x7f030003; 65 | public static final int tree_lay=0x7f030004; 66 | } 67 | public static final class menu { 68 | public static final int activity_main=0x7f080000; 69 | public static final int activity_test=0x7f080001; 70 | } 71 | public static final class string { 72 | public static final int app_name=0x7f060000; 73 | public static final int hello_world=0x7f060001; 74 | public static final int menu_settings=0x7f060002; 75 | public static final int title_activity_main=0x7f060003; 76 | public static final int title_activity_test=0x7f060004; 77 | } 78 | public static final class style { 79 | public static final int AppTheme=0x7f070000; 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /TreeView/proguard.cfg: -------------------------------------------------------------------------------- 1 | -optimizationpasses 5 2 | -dontusemixedcaseclassnames 3 | -dontskipnonpubliclibraryclasses 4 | -dontpreverify 5 | -verbose 6 | -optimizations !code/simplification/arithmetic,!field/*,!class/merging/* 7 | 8 | -keep public class * extends android.app.Activity 9 | -keep public class * extends android.app.Application 10 | -keep public class * extends android.app.Service 11 | -keep public class * extends android.content.BroadcastReceiver 12 | -keep public class * extends android.content.ContentProvider 13 | -keep public class * extends android.app.backup.BackupAgentHelper 14 | -keep public class * extends android.preference.Preference 15 | -keep public class com.android.vending.licensing.ILicensingService 16 | 17 | -keepclasseswithmembernames class * { 18 | native ; 19 | } 20 | 21 | -keepclasseswithmembers class * { 22 | public (android.content.Context, android.util.AttributeSet); 23 | } 24 | 25 | -keepclasseswithmembers class * { 26 | public (android.content.Context, android.util.AttributeSet, int); 27 | } 28 | 29 | -keepclassmembers class * extends android.app.Activity { 30 | public void *(android.view.View); 31 | } 32 | 33 | -keepclassmembers enum * { 34 | public static **[] values(); 35 | public static ** valueOf(java.lang.String); 36 | } 37 | 38 | -keep class * implements android.os.Parcelable { 39 | public static final android.os.Parcelable$Creator *; 40 | } 41 | -------------------------------------------------------------------------------- /TreeView/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-16 12 | android.library.reference.1=../TreeViewLib 13 | -------------------------------------------------------------------------------- /TreeView/res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /TreeView/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TreeView/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /TreeView/res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /TreeView/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TreeView/res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /TreeView/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tochange/TreeView/80f3bad4e36e35b70829fb01361e2a3da4ad223d/TreeView/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TreeView/res/layout/activity_test.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 11 | 12 | 18 | 19 | 20 | 26 | 27 | 28 | 29 | 36 | 37 | 40 | 41 | 44 | 45 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /TreeView/res/layout/commonchooselayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 17 | 18 | 23 | 24 | 25 | 33 | 34 | -------------------------------------------------------------------------------- /TreeView/res/menu/activity_test.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /TreeView/res/values-large/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8dp 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /TreeView/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |