/* * VITacademics * Copyright (C) 2015 Aneesh Neelam <neelam.aneesh@gmail.com> * Copyright (C) 2015 Saurabh Joshi <saurabhjoshi94@outlook.com> * Copyright (C) 2015 Gaurav Agerwala <gauravagerwala@gmail.com> * Copyright (C) 2015 Karthik Balakrishnan <karthikb351@gmail.com> * Copyright (C) 2015 Pulkit Juneja <pulkit.16296@gmail.com> * Copyright (C) 2015 Hemant Jain <hemanham@gmail.com> * Copyright (C) 2015 Darshan Mehta <darshanmehta17@gmail.com> * * This file is part of VITacademics. * * VITacademics is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * VITacademics is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with VITacademics. If not, see <http://www.gnu.org/licenses/>. */ package com.karthikb351.vitinfo2.customwidget; import android.animation.ObjectAnimator; import android.content.Context; import android.support.v4.content.ContextCompat; import android.util.AttributeSet; import android.view.LayoutInflater; import android.view.animation.DecelerateInterpolator; import android.widget.RelativeLayout; import android.widget.TextView; import com.daimajia.numberprogressbar.NumberProgressBar; import com.karthikb351.vitinfo2.R; public class ScheduleView extends RelativeLayout { private TimeLineView timeLineView; private TextView tvTime; private TextView tvTimeAMPM; private TextView tvCourseName; private TextView tvVenue; private NumberProgressBar progressAttendance; private void initialize(){ LayoutInflater layoutInflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE); layoutInflater.inflate(R.layout.schedule_widget, this, true); timeLineView = (TimeLineView) findViewById(R.id.timeline); tvTime = (TextView) findViewById(R.id.tvTime); tvTimeAMPM = (TextView) findViewById(R.id.tvTimeAMPM); tvCourseName = (TextView) findViewById(R.id.tvCourseName); tvVenue= (TextView) findViewById(R.id.tvVenue); progressAttendance = (NumberProgressBar) findViewById(R.id.progressAttendance); progressAttendance.setProgressTextColor(ContextCompat.getColor(getContext(), R.color.text_secondary)); progressAttendance.setReachedBarColor(ContextCompat.getColor(getContext(), R.color.text_secondary)); progressAttendance.setMax(100); progressAttendance.setProgress(0); } public int getAttendance(){ return progressAttendance.getProgress(); } public void setAttendance(int attendance){ ObjectAnimator animation = ObjectAnimator.ofInt(progressAttendance, "progress", attendance); animation.setDuration(1500); animation.setInterpolator(new DecelerateInterpolator()); animation.start(); if(attendance >= 80){ progressAttendance.setReachedBarColor(ContextCompat.getColor(getContext(), R.color.text_secondary)); progressAttendance.setProgressTextColor(ContextCompat.getColor(getContext(), R.color.text_secondary)); } else if(attendance < 75){ progressAttendance.setReachedBarColor(ContextCompat.getColor(getContext(), android.R.color.holo_red_light)); progressAttendance.setProgressTextColor(ContextCompat.getColor(getContext(), android.R.color.holo_red_light)); } else{ progressAttendance.setReachedBarColor(ContextCompat.getColor(getContext(), R.color.midAttend)); progressAttendance.setProgressTextColor(ContextCompat.getColor(getContext(), R.color.midAttend)); } } public void setCourseName(String courseName){ tvCourseName.setText(courseName); } public String getCourseName(){ return tvCourseName.getText().toString(); } public void setTime(String time){ String timeHeader = time.substring(0, time.length() - 3); String AMPM = time.substring(time.length() - 2); if(timeHeader.length() == 4){ timeHeader = "0" + timeHeader; } tvTime.setText(timeHeader); tvTimeAMPM.setText(AMPM.toUpperCase()); } public void setVenue(String venue){ tvVenue.setText(venue); } public String getVenue(){ return tvVenue.getText().toString(); } public void setValues(String courseName, String venue, String time, int attendance){ tvCourseName.setText(courseName); tvVenue.setText(venue); setTime(time); setAttendance(attendance); } public void setState(int state){ timeLineView.setState(state); } public void setType(int type){ timeLineView.setType(type); } public ScheduleView(Context context) { super(context); initialize(); } public ScheduleView(Context context, AttributeSet attrs) { super(context, attrs); initialize(); } public ScheduleView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); initialize(); } }