- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
大家好,这是我第一次使用 MPandroidChart,目前我正在试验它以充分了解如何使用它及其功能。目前,我正在尝试使用用户输入的数据(通过 fragment )更新我的折线图。我已经看到一些关于堆栈溢出的类似问题,但是它们似乎都不适合我。
任何帮助将不胜感激。提前致谢。
注意:有一些重复的代码,因为我正在试验并试图找出不同的方法来寻找解决方案。
获取用户输入的MainFragment
public class Fragment1 extends Fragment {
EditText Input;
Button EnterVal;
public float userInput;
//Fragment1Listener activityCommander;
public interface Fragment1Listener{
void sendInput(float value);
}
/*@Override
public void onAttach(Context context) {
super.onAttach(context);
try{
activityCommander = (Fragment1Listener) getTargetFragment();
}catch (ClassCastException e){
throw new ClassCastException(context.toString() + "Must Implement FragmentListener");
}
}*/
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment1, container, false);
//@SuppressWarnings("all")
Input = view.findViewById(R.id.Input);
EnterVal = view.findViewById(R.id.button);
EnterVal.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String val = Input.getText().toString();
if(val != null && val.length() > 0) {
userInput = Float.valueOf(val);
Input.setText("");
/*if(activityCommander != null) {
activityCommander.sendInput(userInput);
}*/
Fragment1Listener listener = getListener();
if(listener != null){
listener.sendInput(userInput);
Log.d("User Val", "Listener was successfull!");
}
}
}
});
return view;
}
@Nullable
private Fragment1Listener getListener(){
Fragment1Listener activityCommander;
try{
Fragment onInputSelected_Frag = getTargetFragment();
if(onInputSelected_Frag != null){
activityCommander = (Fragment1Listener) onInputSelected_Frag;
}
else{
Activity onInputSelected_Act = getActivity();
activityCommander = (Fragment1Listener) onInputSelected_Act;
}
return activityCommander;
}catch(ClassCastException e){
Log.e("Fragment Listener", "getListener: ClassCastException + " + e.getMessage());
}
return null;
}
}
MPandroidchart fragment (折线图)
public class Fragment2 extends Fragment implements Fragment1.Fragment1Listener{
private LineChart lineChart;
//public Fragment1 fragment1;
private ArrayList<ILineDataSet> DataSets = new ArrayList<>();
private LineDataSet lineDataSet5;
private ArrayList<Entry> userData = new ArrayList<>();
private LineData data = new LineData(DataSets);
@Override
public void sendInput(float value) {
data = lineChart.getData();
ILineDataSet xSet = data.getDataSetByIndex(0);
data.addEntry(new Entry(xSet.getEntryCount(), value),0);
//lineDataSet5.notifyDataSetChanged();
//lineDataSets.add(lineDataSet5);
data.notifyDataChanged();
lineChart.notifyDataSetChanged();
lineChart.invalidate();
lineChart.moveViewToX(data.getEntryCount());
}
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment2, container, false);
lineChart = view.findViewById(R.id.LineChart);
//Enable Touch Gestures
lineChart.setTouchEnabled(true);
//We want also enable scaling and dragging
lineChart.setDragEnabled(true);
lineChart.setScaleEnabled(true);
//Enable pinch zoom to avoid scaling x and y axis separately
lineChart.setPinchZoom(true);
//Double tap zoom to chart
lineChart.setDoubleTapToZoomEnabled(true);
//Alternate Background Color
lineChart.setBackgroundColor(Color.parseColor("#2b2b2b"));
ArrayList<String> xAXES = new ArrayList<>();
ArrayList<Entry> yAXESsin = new ArrayList<>();
ArrayList<Entry> yAXEScos = new ArrayList<>();
ArrayList<Entry> yAXEStan = new ArrayList<>();
ArrayList<Entry> random = new ArrayList<>();
double x = 0;
int numDataPoints = 1000;
for(int i =0; i<numDataPoints; i++){
float sinFunction = Float.parseFloat(String.valueOf(Math.sin(x)));
float cosFunction = Float.parseFloat(String.valueOf(Math.cos(x)));
float tanFunction = Float.parseFloat(String.valueOf(Math.tan(x)));
x += 0.1;
yAXESsin.add(new Entry(i, sinFunction));
yAXEScos.add(new Entry(i, cosFunction));
yAXEStan.add(new Entry(i, tanFunction));
xAXES.add(i, String.valueOf(x));
final int randomVal = getRandomNumber(-10, 10);
float randomData = (float) randomVal;
random.add(new Entry(i, randomData));
}
String[] xaxes = new String[xAXES.size()];
for(int i =0; i<xAXES.size(); i++){
xaxes[i] = xAXES.get(i).toString();
}
//Add user Input
//@SuppressWarnings("all")
//userInput = fragment1.getUserInput();
//userData.add(new Entry(userData.size()+1, userInput));
ArrayList<ILineDataSet> lineDataSets = new ArrayList<>();
ArrayList<ILineDataSet> dataSets = new ArrayList<>();
//Data Set 1
LineDataSet lineDataSet1 = new LineDataSet(yAXEScos, "Cos");
lineDataSet1.setAxisDependency(YAxis.AxisDependency.LEFT);
lineDataSet1.setDrawCircles(false);
lineDataSet1.setColor(Color.parseColor("#B71C1C"));
lineDataSet1.setLineWidth(3f);
lineDataSet1.setHighlightEnabled(true);
lineDataSet1.setDrawHighlightIndicators(true);
lineDataSet1.setHighLightColor(Color.parseColor("#FF4081"));
lineDataSet1.setValueTextSize(10f);
lineDataSet1.setValueTextColor(Color.WHITE);
lineDataSet1.setFillAlpha(110);
//Data Set 2
LineDataSet lineDataSet2 = new LineDataSet(yAXESsin, "Sin");
lineDataSet2.setAxisDependency(YAxis.AxisDependency.LEFT);
lineDataSet2.setDrawCircles(false);
lineDataSet2.setColor(Color.parseColor("#33bbff"));
lineDataSet2.setLineWidth(3f);
lineDataSet2.setHighlightEnabled(true);
lineDataSet2.setDrawHighlightIndicators(true);
lineDataSet2.setHighLightColor(Color.parseColor("#FFD600"));
lineDataSet2.setValueTextSize(10f);
lineDataSet2.setValueTextColor(Color.WHITE);
lineDataSet2.setFillAlpha(110);
//Data Set 3
LineDataSet lineDataSet3 = new LineDataSet(yAXEStan, "Tan");
lineDataSet3.setAxisDependency(YAxis.AxisDependency.LEFT);
lineDataSet3.setDrawCircles(false);
lineDataSet3.setColor(Color.parseColor("#FFD600"));
lineDataSet3.setLineWidth(3f);
lineDataSet3.setHighlightEnabled(true);
lineDataSet3.setDrawHighlightIndicators(true);
lineDataSet2.setHighLightColor(Color.parseColor("#FFD600"));
lineDataSet2.setValueTextSize(10f);
lineDataSet2.setValueTextColor(Color.WHITE);
lineDataSet2.setFillAlpha(110);
//Data Set 4
/*LineDataSet lineDataSet4 = new LineDataSet(random, "Random Numbers");
lineDataSet4.setAxisDependency(YAxis.AxisDependency.LEFT);
lineDataSet4.setDrawCircles(false);
lineDataSet4.setColor(Color.parseColor("#00897B"));
lineDataSet4.setLineWidth(3f);
lineDataSet4.setHighlightEnabled(true);
lineDataSet4.setDrawHighlightIndicators(true);
lineDataSet4.setHighLightColor(Color.parseColor("#64FFDA"));
lineDataSet4.setValueTextSize(10f);
lineDataSet4.setValueTextColor(Color.WHITE);
lineDataSet4.setFillAlpha(110);*/
//Data set 5 - User Input
lineDataSet5 = new LineDataSet(userData, "User Data");
lineDataSet5.setAxisDependency(YAxis.AxisDependency.LEFT);
lineDataSet5.setDrawCircles(false);
lineDataSet5.setColor(Color.parseColor("#9C27B0"));
lineDataSet5.setLineWidth(3f);
lineDataSet5.setHighlightEnabled(true);
lineDataSet5.setDrawHighlightIndicators(true);
lineDataSet5.setHighLightColor(Color.parseColor("#E040FB"));
lineDataSet5.setValueTextSize(10f);
lineDataSet5.setValueTextColor(Color.WHITE);
lineDataSet5.setFillAlpha(110);
//Add Data sets
lineDataSets.add(lineDataSet1);
lineDataSets.add(lineDataSet2);
lineDataSets.add(lineDataSet3);
//lineDataSets.add(lineDataSet4);
//lineDataSets.add(lineDataSet5);
lineChart.setData(new LineData(lineDataSets));
lineChart.setData(new LineData());
lineChart.setVisibleXRangeMaximum(65f);
lineChart.setHighlightPerTapEnabled(true);
//Get legend object
Legend legend = lineChart.getLegend();
//Customize Legend
legend.setForm(Legend.LegendForm.LINE);
legend.setTextColor(Color.WHITE);
//Set x axis
XAxis xAxis = lineChart.getXAxis();
xAxis.setPosition(XAxis.XAxisPosition.BOTTOM);
xAxis.setTextColor(Color.WHITE);
xAxis.setTextSize(10f);
xAxis.setDrawGridLines(true);
xAxis.setAvoidFirstLastClipping(true);
//Set y axis
YAxis yAxis = lineChart.getAxisLeft();
yAxis.setTextColor(Color.WHITE);
yAxis.setTextSize(10f);
yAxis.setDrawGridLines(true);
yAxis.setAxisMaximum(10f);
yAxis.setAxisMinimum(-10f);
//Disable Right y-axis values
lineChart.getAxisRight().setEnabled(false);
//Set Description
lineChart.getDescription().setText("Sin and Cos Functions");
lineChart.getDescription().setTextColor(Color.WHITE);
//Update and refresh for User Input
lineChart.notifyDataSetChanged(); //let the chart know it's data changed
lineChart.invalidate(); //Refresh
return view;
}
private int getRandomNumber(int min,int max) {
return (new Random()).nextInt((max - min) + 1) + min;
}
}
主要 Activity :
它管理 2 个选项卡,一个选项卡包含供用户输入值的 EditText,另一个选项卡包含我要更新的折线图。
public class MainActivity extends AppCompatActivity {
private SectionsPagerAdapter mSectionsPagerAdapter;
private ViewPager mViewPager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());
// Set up the ViewPager with the sections adapter.
mViewPager = findViewById(R.id.container);
//mViewPager.setAdapter(mSectionsPagerAdapter);
setupViewPager(mViewPager);
TabLayout tabLayout = findViewById(R.id.tabs);
tabLayout.setupWithViewPager(mViewPager);
mViewPager.addOnPageChangeListener(new TabLayout.TabLayoutOnPageChangeListener(tabLayout));
tabLayout.addOnTabSelectedListener(new TabLayout.ViewPagerOnTabSelectedListener(mViewPager));
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
.setAction("Action", null).show();
}
});
}
private void setupViewPager(ViewPager viewPager){
SectionsPagerAdapter adapter = new SectionsPagerAdapter(getSupportFragmentManager());
adapter.addFragment(new Fragment1(), "Fragment 1");
adapter.addFragment(new Fragment2(), "Fragment 2");
viewPager.setAdapter(adapter);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
最佳答案
您可以更直接地设置监听器。尝试将此方法添加到 Fragment1
(并删除 getListener
)
void setListener(Fragment1Listener listener) {
activityCommander = listener;
}
然后像这样在您的 Activity 中设置监听器
private void setupViewPager(ViewPager viewPager){
SectionsPagerAdapter adapter = new SectionsPagerAdapter(getSupportFragmentManager());
Fragment1 f1 = new Fragment1();
Fragment2 f2 = new Fragment2();
f1.setListener(f2);
adapter.addFragment(f1, "Fragment 1");
adapter.addFragment(f2, "Fragment 2");
viewPager.setAdapter(adapter);
}
当屏幕旋转时,这种方法可能会出现问题,但这至少可以帮助您克服这个障碍。如果您想继续使用 getTargetFragment
方法,您还需要在某处调用 setTargetFragment
(参见 question)。类似于 f1.setTargetFragment(f2);
而不是上面代码中的 f1.setListener(f2)
。
我认为一旦监听器开始工作,您就需要对图形部分进行一些更改以使其继续工作。例如替换
lineChart.setData(new LineData(lineDataSets));
lineChart.setData(new LineData()); // this overrides the previous line with an empty data set
与
data.addDataSet([... the sets you want to add ...]);
lineChart.setData(data);
但这至少应该让您走上正确的道路。
关于java - Android Studio - MPAndroidChart 将用户输入添加到折线图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51468742/
我创建了一个用户可以添加测试的字段。这一切运行顺利我只希望当用户点击(添加另一个测试)然后上一个(添加另一个测试)删除并且这个显示在新字段中。 所有运行良好的唯一问题是点击(添加另一个字段)之前添加另
String[] option = {"Adlawan", "Angeles", "Arreza", "Benenoso", "Bermas", "Brebant
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
我正在努力将 jQuery 滚动功能添加到 nav-tab (Bootstrap 3)。我希望用户能够选择他们想要的选项卡,并在选项卡内容中有一个可以平滑滚动到 anchor 的链接。这是我的代码,可
我正在尝试在用户登录后再添加 2 个 ui 选项卡。首先,我尝试做一个之后。 $('#slideshow').tabs('remove', '4'); $("#slideshow ul li:last
我有一个包含选择元素的表单,我想通过选择添加和删除其中一些元素。这是html代码(这里也有jsfiddle http://jsfiddle.net/txhajy2w/):
正在写这个: view.backgroundColor = UIColor.white.withAlphaComponent(0.9) 等同于: view.backgroundColor = UICo
好的,如果其中有任何信息,我想将这些列添加到一起。所以说我有 账户 1 2 3 . 有 4 个帐户空间,但只有 3 个帐户。我如何创建 java 脚本来添加它。 最佳答案 Live Example H
我想知道是否有一种有效的预制算法来确定一组数字的和/差是否可以等于不同的数字。示例: 5、8、10、2,使用 + 或 - 等于 9。5 - 8 = -3 + 10 = 7 + 2 = 9 如果有一个预
我似乎有一个卡住的 git repo。它卡在所有基本的添加、提交命令上,git push 返回所有内容为最新的。 从其他帖子我已经完成了 git gc 和 git fsck/ 我认为基本的调试步骤是
我的 Oracle SQL 查询如下- Q1- select hca.account_number, hca.attribute3, SUM(rcl.extended_amou
我正在阅读 http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingG
我正在尝试添加一个“加载更多”按钮并限制下面的结果,这样投资组合页面中就不会同时加载 1000 个内容,如下所示:http://typesetdesign.com/portfolio/ 我对 PHP
我遇到这个问题,我添加了 8 个文本框,它工作正常,但是当我添加更多文本框(如 16 个文本框)时,它不会添加最后一个文本框。有人遇到过这个问题吗?提前致谢。 Live Link: JAVASCRIP
add/remove clone first row default not delete 添加/删除克隆第一行默认不删除&并获取正确的SrNo(例如:添加3行并在看到问题后删除SrNo.2)
我编码this ,但删除按钮不起作用。我在控制台中没有任何错误.. var counter = 0; var dataList = document.getElementById('materi
我有一个类似数组的对象: [1:数组[10]、2:数组[2]、3:数组[2]、4:数组[2]、5:数组[3]、6:数组[1]] 我正在尝试删除前两个元素,执行一些操作,然后将它们再次插入到同一位置。
使用的 Delphi 版本:2007 你好, 我有一个 Tecord 数组 TInfo = Record Name : String; Price : Integer; end; var Info
我使用了基本的 gridster 代码,然后我声明了通过按钮添加和删除小部件的函数它工作正常但是当我将调整大小功能添加到上面的代码中时,它都不起作用(我的意思是调整大小,添加和删除小部件) 我的js代
title 323 323 323 title 323 323 323 title 323 323 323 JS $(document).keydown(function(e){
我是一名优秀的程序员,十分优秀!