Skip to content

Commit

Permalink
adt新增支持RecyclerView;同步studio版至adt版;
Browse files Browse the repository at this point in the history
  • Loading branch information
TommyLemon committed Oct 4, 2017
1 parent 7900fc8 commit fdc9a02
Show file tree
Hide file tree
Showing 37 changed files with 1,939 additions and 98 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ ZBLibrary(ADT)/ZBLibraryDemoApp/gen
ZBLibrary(AndroidStudio)/.idea
ZBLibrary(AndroidStudio)/app/build
ZBLibrary(AndroidStudio)/ZBLibrary/build
ZBLibrary(ADT)/recyclerview/bin
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6
org.eclipse.jdt.core.compiler.source=1.7
6 changes: 3 additions & 3 deletions ZBLibrary(ADT)/ZBLibrary/.settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6
org.eclipse.jdt.core.compiler.source=1.7
1 change: 1 addition & 0 deletions ZBLibrary(ADT)/ZBLibrary/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@
# Project target.
target=android-21
android.library=true
android.library.reference.1=../recyclerview
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@id/lvBaseList"
style="@style/lv_no_divider" />
4 changes: 3 additions & 1 deletion ZBLibrary(ADT)/ZBLibrary/res/values/ids.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@
<item name="llBaseViewBottomWindowContainer" type="id">false</item>
<item name="tvBaseViewBottomWindowReturn" type="id">false</item>
<item name="tvBaseViewBottomWindowForward" type="id">false</item>

<item name="rvBaseRecycler" type="id">false</item>
<item name="xrvBaseHttpRecycler" type="id">false</item>

</resources>
2 changes: 1 addition & 1 deletion ZBLibrary(ADT)/ZBLibrary/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<resources>

<string name="app_name">坐标标准库</string>
<string name="app_version">15.0</string>
<string name="app_version">15.1</string>
<string name="share_app">我发现了一款很好用的Android快速开发框架,叫 Android-ZBLibrary ,快去GitHub上看看吧~</string>
<string name="page_return">返回</string>
<string name="remind">提示</string>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import zuo.biao.library.interfaces.CacheCallBack;
import zuo.biao.library.interfaces.OnStopLoadListener;
import zuo.biao.library.manager.CacheManager;
import zuo.biao.library.manager.HttpManager;
import zuo.biao.library.util.Log;
import zuo.biao.library.util.SettingUtil;
import zuo.biao.library.util.StringUtil;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import zuo.biao.library.interfaces.CacheCallBack;
import zuo.biao.library.interfaces.OnStopLoadListener;
import zuo.biao.library.manager.CacheManager;
import zuo.biao.library.manager.HttpManager;
import zuo.biao.library.util.Log;
import zuo.biao.library.util.SettingUtil;
import zuo.biao.library.util.StringUtil;
Expand Down
Loading

0 comments on commit fdc9a02

Please sign in to comment.