android - How do I attatch text information to a specific date using Calender View -


i added calender view black activity.

<linearlayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingleft="@dimen/activity_horizontal_margin" android:paddingright="@dimen/activity_horizontal_margin" android:paddingtop="@dimen/activity_vertical_margin" android:paddingbottom="@dimen/activity_vertical_margin" tools:context=".homepage">  <calendarview     android:id="@+id/calender_view"     android:onclick="hourslog"     android:layout_width="match_parent"     android:layout_height="match_parent">   </calendarview> 

what want able select date calender , enter numbers (hours logged) tied specific date kind of how reminder functions.

i know have create new activity , intent i'm lost how can 'attach' activity page specific date. having function part of calender , not new entity entirely.

i got far in .java file

public class homepage extends actionbaractivity {   public void hourslog (view view){     intent intent = new intent (this, displayhourslog.class);     calendarview cview = (calendarview) findviewbyid(r.id.calender_view);  } 

you can check , use custom adaptercalendar(http://droidwalk.blogspot.com/2012/11/android-calendar-sample.html):

datemodel.class

private string mtextnote;  private date mdatechoose;  public string gettextnote(){return mtextnote};  public date getdatechoose(){return mdatechoose};  public void settextnote(string textnote){mtextnote = textnote;};  public void setdatechoose(string datechoose){mdatechoose = datechoose;}; 

after : click calendar, check if calendar == getdatechoose; show textnote.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -