Skip to content

Commit

Permalink
#
Browse files Browse the repository at this point in the history
  • Loading branch information
Justson committed May 4, 2018
1 parent 8e10a75 commit ec1646f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,6 @@ public static String[] uriToPath(Activity activity, Uri[] uris) {
int i = 0;
for (Uri mUri : uris) {
paths[i++] = Build.VERSION.SDK_INT > Build.VERSION_CODES.JELLY_BEAN_MR2 ? getFileAbsolutePath(activity, mUri) : getRealPathBelowVersion(activity, mUri);
// Log.i("Info", "path:" + paths[i-1] + " uri:" + mUri);

}
return paths;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
/**
* Created by cenxiaozhong on 2017/7/18.
*/

public class BaseAgentWebActivity extends AppCompatActivity {

@Override
Expand Down
2 changes: 2 additions & 0 deletions library/src/main/java/com/just/agentwebX5/WebProgress.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ protected void dispatchDraw(Canvas canvas) {
canvas.drawRect(0, 0, currentProgress / 100 * Float.valueOf(this.getWidth()), this.getHeight(), mPaint);
}

@Override
public void show() {

LogUtils.i("WebProgress","WebProgress show");
Expand Down Expand Up @@ -127,6 +128,7 @@ public void setProgress(float progress) {
startAnim(progress, false);
}

@Override
public void hide() {
TAG = FINISH;
}
Expand Down

0 comments on commit ec1646f

Please sign in to comment.