We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import android.app.Activity; import android.os.Bundle;
import com.wefika.calendar.CollapseCalendarView; import com.wefika.calendar.manager.CalendarManager;
import org.joda.time.LocalDate;
public class CalendarDemo extends Activity {
private CollapseCalendarView mCalendarView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); CalendarManager manager = new CalendarManager(LocalDate.now(), CalendarManager.State.MONTH, LocalDate.now(), LocalDate.now().plusYears(1)); mCalendarView = (CollapseCalendarView) findViewById(R.id.calendar); mCalendarView.init(manager); }
}
while init method called i'm not able to set manager
The text was updated successfully, but these errors were encountered:
No branches or pull requests
import android.app.Activity;
import android.os.Bundle;
import com.wefika.calendar.CollapseCalendarView;
import com.wefika.calendar.manager.CalendarManager;
import org.joda.time.LocalDate;
public class CalendarDemo extends Activity {
}
while init method called i'm not able to set manager
The text was updated successfully, but these errors were encountered: