8

我在此使用谷歌图表 API

我如何在 android 应用程序中使用此图表?

这是我的代码

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

       String url =  "http://chart.apis.google.com/chart?cht=p3&chs=500x200&chd=e:TNTNTNGa&chts=000000,16&chtt=A+Better+Web&chl=Hello|Hi|anas|Explorer&chco=FF5533,237745,9011D3,335423&chdl=Apple|Mozilla|Google|Microsoft";
        WebView mCharView = (WebView) findViewById(R.id.char_view);
        mCharView.loadUrl(url);
    }

和 XML

<?xml version="1.0" encoding="utf-8"?>


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

<WebView android:id="@+id/char_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="visible"/>


    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />

</LinearLayout>
4

3 回答 3

13

如果您想像@Rajesh 所说的那样加载图表,则必须使用网络视图,然后通过以下方式加载图表的网址:

webview.loadUrl(CHART_URL);

添加到您的清单

<uses-permission android:name="android.permission.INTERNET"></uses-permission>

但是,如果您正在寻找如何在 android 中绘制饼图,您可以查看本教程,它附有示例代码

在此处输入图像描述

于 2012-05-30T10:17:00.373 回答
4

记得在你的 webview 中启用 javascript!

webview.getSettings().setJavaScriptEnabled(true);
于 2012-11-02T15:45:38.807 回答
3

使用 aWebView显示任何 Web 内容。

webview.loadUrl(CHART_URL);
于 2012-05-30T10:10:35.710 回答