Изменение цвета кривых диаграммы радара на основе значений Yaxis в MPAndroidChart

Я думаю, что проблема здесь в вашем коде

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{ 
.....
....
 //problem is here below line
 return inflater.inflate(R.layout.input_fgmt, container, false);
}

возвращает уже завышенный вид

 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
    { 
    .....
    ....

     return InputFragmentView;
    }
0
задан Alok Jha 20 January 2019 в 11:31
поделиться