如何使用Google图表API

时间:2012-05-30 10:05:18

标签: android google-api

我在this

中使用了Google图表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>

3 个答案:

答案 0 :(得分:12)

如果你想加载你的图表,像@Rajesh说你必须使用webview而不是加载你的图表的网址:

webview.loadUrl(CHART_URL);

添加到您的清单

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

但如果您正在寻找如何在Android中绘制饼图,您可以看到此tutorial它附有示例代码

enter image description here

答案 1 :(得分:4)

请记住在您的网络视图中启用javascript!

webview.getSettings().setJavaScriptEnabled(true);

答案 2 :(得分:3)

使用WebView显示任何网络内容。

webview.loadUrl(CHART_URL);