gpt4 book ai didi

java - 在 android graphview 中添加背景图像

转载 作者:太空宇宙 更新时间:2023-11-04 14:20:18 25 4
gpt4 key购买 nike

package com.example.graph;                                     

public class MainActivity extends Activity
{
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

GraphViewSeries exampleSeries = new GraphViewSeries(new GraphViewData[]{
new GraphViewData(1, 2.0d)
, new GraphViewData(2, 1.5d)
, new GraphViewData(3, 2.5d)
, new GraphViewData(4, 1.0d)
});

GraphView graphView = new BarGraphView(MainActivity.this,"GraphViewDemo");
graphView.addSeries(exampleSeries);
graphView.setBackgroundColor(getResources().getColor(android.R.color.holo_green_light));
graphView.setBackgroundColor(Color.argb(50, 50, 0, 200));
}
public boolean onCreateOptionsMenu(Menu menu)
{
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}

最佳答案

您可以通过设置 graphView.setBackground 属性在 graphview 中使用图像作为背景,但如果您的最低 API 小于 16,Android 会提示。

int imageResource = getResources().getIdentifier("@drawable/output_background", null, getPackageName());
Drawable graph_background = getResources().getDrawable(imageResource);
graphView.setBackground(graph_background);

关于java - 在 android graphview 中添加背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27273570/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com