2013-03-25 193 views
0

我可以使用html或html5繪製活動圖形並使用webview或其他東西在android活動中顯示它嗎? 如果有可能,請告訴我如何處理它。 任何教程將是最佳做法。 在此先感謝。在android中繪製圖形

回答

0

您可以選擇使用圖書館,如achartengine。你也可以在android中做canvas繪圖。此外,您可以使用HTML進行畫布繪製,並像上面提到的那樣在webview中顯示它。

這一切都取決於你願意採取什麼級別的複雜性,以及什麼是真正需要的。如果你需要顯示一個簡單的圖形,你總是可以使用自定義類並使用onDraw方法來進行畫布繪製。

0

檢查 link 希望它可以幫助你 link2

但是,請注意,您還可以做離線圖表和還指出,這是不使用HTML5來完成。 要使用HTML創建圖表,請參閱此tutorial

GraphView graphView = new GraphView(
    this 
    , new GraphViewData[] { 
    new GraphViewData(1, 2.0d) 
    , new GraphViewData(2, 1.5d) 
    , new GraphViewData(2.5, 3.0d) // another frequency 
    , new GraphViewData(3, 2.5d) 
    , new GraphViewData(4, 1.0d) 
    , new GraphViewData(5, 3.0d) 
    } 
    , "GraphViewDemo" 
    , null 
    , null 
); 
LinearLayout layout = (LinearLayout) findViewById(R.id.graph1); 
layout.addView(graphView);