Hello Friends,     Have you Searching for Android calender with WeekView.   Today I am sharing android tutorial for android custom calendar WeekView.    WeekView.java   public class WeekView extends ActionBarActivity implements OnItemClickListener, OnClickListener {    private GridView       mGrid;   private GregorianCalendar     mCalendar;   private Date[]        mWeek;   private TextView       mMonthText;   private RelativeLayout      mArrowRight;   private RelativeLayout      mArrowLeft;   private CalendarAdapter      mAdapter;   private SimpleDateFormat mFormatMonth   = new SimpleDateFormat("MMMM");   private SimpleDateFormat mFormatDay    = new SimpleDateFormat("d");   private SimpleDateFormat mFormatYear   = new SimpleDateFormat("yyyy");     @Override   protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_week_view);     mGrid=(GridView)findViewById(R.id.gridview);    mGrid.s...
Android tutorials, Kotlin tutorials