Webview图像OnClick监听器

时间:2016-01-05 12:23:36

标签: image webview onclick listener

我有一个包含WebView的布局。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:orientation="vertical">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="5dp"
    android:background="@drawable/customborder"
    android:padding="10dp">

    <TextView
        android:id="@+id/textView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:textColor="#ffe86000"
        android:textSize="30sp"
        android:textStyle="bold" />
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="5dp"
    android:background="@drawable/custombordergray"
    android:orientation="vertical"
    android:padding="10dp">

    <WebView
        android:id="@+id/webview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="#000000"
        android:textSize="15sp"/>

</LinearLayout>

我正在从资产文件夹中加载html文件。

img src =&#39; file:///android_asset/images/bhuikot.jpg'宽度=&#34; 100%&#34;高度=&#34;自动&#34;

xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz xyz

在Html文件中我有一些图像和文字。

    public class Antur extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // FULLSCREEN
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

        setContentView(R.layout.killa_name);

        TextView myAwesomeTextView = (TextView)findViewById(R.id.textView);

        //in your OnCreate() method
        myAwesomeTextView.setText("AAAAA");

        WebView mWebView = (WebView) findViewById(R.id.webview);
        // Loading an html page into webview
        mWebView.loadUrl("file:///android_asset/webview/antur.html");
    }
}

当我点击该图像时,我想在另一个活动中打开该图像。

提前致谢

0 个答案:

没有答案