How to inflate another layout inside getView() of gridview adapter in android?
问题 I want to create weekly calendar view and inside each grid item (each day) there are may be several activities.Out of this I have created weekly calendar view using grid view but I want to add activities if there are any for particular date by dynamically checking db. Like same as in image. Below is my getView() code.. @Override public View getView(int position, View convertView, ViewGroup parent) { View row = convertView; if (convertView == null) { LayoutInflater inflater = (LayoutInflater)