• This project
    • Loading...
  • Sign in

fastcoding / commonProject

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • commonProject
  • ..
  • jsbridge
  • IWebView.java
  • 添加详情页 · 5ee41fd1
    5ee41fd1 Browse Files
    wangkai authored 2024-11-14 15:11:39 +0800
IWebView.java 232 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.github.lzyzsd.jsbridge;

import android.content.Context;

/**
 * WebView功能接口.
 *
 * @author ZhengAn
 * @date 2019-07-01
 */
public interface IWebView {

    Context getContext();

    void loadUrl(String url);
}