1

html でフォーマットされたテキストビューがありHtml.fromHtml() ます。たとえば、href をクリックすると、ブラウザが起動します。私が望むのは、その意図を処理し、ブラウザーを起動しないことです。

これは私が持っているコードです:

notic = Html.fromHtml(noti.getDescripcion());                
noticiacorregida = CorrigeLinks(notic);
lbl_descripcion.setText(noticiacorregida);
lbl_descripcion.setMovementMethod(LinkMovementMethod.getInstance());

ブラウザを起動するのではなく、変数に URL を保存する必要があります。

ありがとう

4

1 に答える 1

0

まあ、私が思いつくことができる最善の方法は、webview を作成することです。このコードを使用します。まずはジャバです。

 package com.stackoverflow.images.webview;

import android.app.*;
import android.os.*;
import android.view.*;
import android.widget.*;
import android.content.*;
import android.webkit.*;

public class Site extends Activity
{
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.image);
        WebView webView = (WebView) 
        findViewById(R.id.webview); 
          webView.loadUrl("http://examplesite.com/yourimage");

      }


}

これが XML です。上記の JAVA と URL のパッケージのみを変更してみてください。 onCreateレイアウトのように、上のJAVAですべてが正しいことを確認してください

 <?xml version="1.0" encoding="utf-8"?>
<WebView
    android:id="@+id/webview"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
       android:layout_height="fill_parent"
        android:orientation="vertical"
>

    </WebView>
于 2012-09-29T12:08:29.773 に答える