Skip to content

Commit

Permalink
release 1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Justson committed Jul 8, 2017
1 parent 433ff53 commit 49275b9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 12 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ WebView 可谓是每个应用必备的一个控件了 ,但是它不是一个
* Gradle

```
compile 'com.just.agentweb:agentweb:1.2.4'
compile 'com.just.agentweb:agentweb:1.2.5'
```
* Maven

```
<dependency>
<groupId>com.just.agentweb</groupId>
<artifactId>agentweb</artifactId>
<version>1.2.4</version>
<version>1.2.5</version>
<type>pom</type>
</dependency>

Expand Down Expand Up @@ -222,6 +222,7 @@ Java 注入类不要混淆 , 例如 sample 里面的 AndroidInterface 类 ,
```

## 更新日志
* v_1.2.5 提示信息支持配置
* v_1.2.4 支持传入 IWebLayout ,可以完成下拉回弹效果 。
* v_1.2.3 新增下载结果回调 。
* v_1.2.2 修复已知 Bug 。
Expand Down
7 changes: 4 additions & 3 deletions README_ENGLISH.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ Support | Simplicity | Support | Concise | Yes | Security | Support |
* Gradle

```
compile 'com.just.agentweb:agentweb:1.2.4'
compile 'com.just.agentweb:agentweb:1.2.5'
```
* Maven

```
<dependency>
<groupId>com.just.agentweb</groupId>
<artifactId>agentweb</artifactId>
<version>1.2.4</version>
<version>1.2.5</version>
<type>pom</type>
</dependency>

Expand Down Expand Up @@ -212,6 +212,7 @@ Java injection class do not confuse, such as sample inside the AndroidInterface
```

## Update log
* V_1.2.5 Prompt information support settings
* V_1.2.4 support incoming IWebLayout, you can complete the pull-down effect.
* V_1.2.3 Added download result callback.
* V_1.2.2 Fix known bugs.
Expand Down Expand Up @@ -246,7 +247,7 @@ An Android developer located in Shenzhen, if you have a better job offer availab
## AgentWeb
AgentWeb is a WebView completely out of the Act, from the Activity, Fragment xml layout, independent of the Android Web library.

### Finally, if the library is helpful to you, I may be grateful to the top right corner of my support, thanks! Of course, I prefer you to become a contributor to Fork PR. [AgentWeb] (https://github.com/Justson/ AgentWeb)
#### Finally, if the library is helpful to you, I may be grateful to the top right corner of my support, thanks! Of course, I prefer you to become a contributor to Fork PR. [AgentWeb] (https://github.com/Justson/ AgentWeb)

## License
```
Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ android {
dirs 'libs', 'providedLibs'
}
}
defaultPublishConfig "debug"
//defaultPublishConfig "debug"

}

Expand All @@ -51,7 +51,7 @@ publish {
userOrg = 'just'
groupId = 'com.just.agentweb'
artifactId = 'agentweb'
version = '1.2.4'
version = '1.2.5'
description = 'very easy to build you web page'
website = "https://github.com/Justson/AgentWeb"
}
Original file line number Diff line number Diff line change
Expand Up @@ -190,24 +190,19 @@ public void onActivityResult(int requestCode, int resultCode, Intent data) {
protected void initView(View view) {
mBackImageView = (ImageView) view.findViewById(R.id.iv_back);
mLineView = view.findViewById(R.id.view_line);

mFinishImageView = (ImageView) view.findViewById(R.id.iv_finish);
mTitleTextView = (TextView) view.findViewById(R.id.toolbar_title);

mBackImageView.setOnClickListener(mOnClickListener);
mFinishImageView.setOnClickListener(mOnClickListener);

mMoreImageView = (ImageView) view.findViewById(R.id.iv_more);
mMoreImageView.setOnClickListener(mOnClickListener);

pageNavigator(View.GONE);
}



private void pageNavigator(int tag) {

// Log.i("Info", "TAG:" + tag);
mBackImageView.setVisibility(tag);
mLineView.setVisibility(tag);
}
Expand Down

0 comments on commit 49275b9

Please sign in to comment.