initial add for recycler view implementation with headers (WIP)

This commit is contained in:
Andy Scherzinger 2016-09-21 15:43:41 +02:00
parent 2334e066ef
commit 20dbdb872f
5 changed files with 409 additions and 19 deletions

View file

@ -0,0 +1,57 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Nextcloud Android client application
Copyright (C) 2016 Andy Scherzinger
Copyright (C) 2016 Nextcloud.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
License as published by the Free Software Foundation; either
version 3 of the License, or any later version.
This program 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 AFFERO GENERAL PUBLIC LICENSE for more details.
You should have received a copy of the GNU Affero General Public
License along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/syncStatusButton"
android:layout_alignParentLeft="true"
android:layout_alignTop="@+id/syncStatusButton"
android:layout_toLeftOf="@+id/syncStatusButton"
android:gravity="start|center_vertical"
android:text="Header Text"
android:textColor="?android:textColorPrimary"/>
<ImageButton
android:id="@+id/syncStatusButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginBottom="@dimen/standard_half_margin"
android:layout_marginTop="@dimen/standard_half_margin"
android:clickable="true"
android:src="@drawable/ic_cloud_sync_off"/>
<ImageButton
android:id="@+id/settingsButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginBottom="@dimen/standard_half_margin"
android:layout_marginTop="@dimen/standard_half_margin"
android:clickable="true"
android:src="@drawable/ic_settings"/>
</RelativeLayout>

View file

@ -34,25 +34,14 @@
<include
layout="@layout/toolbar_standard"/>
<ScrollView
android:id="@+id/scrollView"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="@dimen/standard_padding">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="TODO"
android:textAppearance="?android:attr/textAppearanceLarge"/>
</LinearLayout>
</ScrollView>
<android.support.v7.widget.RecyclerView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:padding="@dimen/standard_padding"
android:scrollbarStyle="outsideOverlay"
android:scrollbars="vertical"/>
</LinearLayout>

View file

@ -0,0 +1,184 @@
/**
* Copyright 2016 Aidan Follestad
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
package com.afollestad.sectionedrecyclerview;
import android.support.annotation.IntRange;
import android.support.annotation.Nullable;
import android.support.v4.util.ArrayMap;
import android.support.v7.widget.GridLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.support.v7.widget.StaggeredGridLayoutManager;
import android.view.ViewGroup;
import java.util.List;
/**
* @author Aidan Follestad (afollestad)
*/
public abstract class SectionedRecyclerViewAdapter<VH extends RecyclerView.ViewHolder> extends RecyclerView.Adapter<VH> {
protected final static int VIEW_TYPE_HEADER = -2;
protected final static int VIEW_TYPE_ITEM = -1;
private final ArrayMap<Integer, Integer> mHeaderLocationMap;
private GridLayoutManager mLayoutManager;
private ArrayMap<Integer, Integer> mSpanMap;
private boolean mShowHeadersForEmptySections;
public SectionedRecyclerViewAdapter() {
mHeaderLocationMap = new ArrayMap<>();
}
public abstract int getSectionCount();
public abstract int getItemCount(int section);
public abstract void onBindHeaderViewHolder(VH holder, int section);
public abstract void onBindViewHolder(VH holder, int section, int relativePosition, int absolutePosition);
public final boolean isHeader(int position) {
return mHeaderLocationMap.get(position) != null;
}
/**
* Instructs the list view adapter to whether show headers for empty sections or not.
*
* @param show flag indicating whether headers for empty sections ought to be shown.
*/
public final void shouldShowHeadersForEmptySections(boolean show) {
mShowHeadersForEmptySections = show;
}
public final void setLayoutManager(@Nullable GridLayoutManager lm) {
mLayoutManager = lm;
if (lm == null) return;
lm.setSpanSizeLookup(new GridLayoutManager.SpanSizeLookup() {
@Override
public int getSpanSize(int position) {
if (isHeader(position))
return mLayoutManager.getSpanCount();
final int[] sectionAndPos = getSectionIndexAndRelativePosition(position);
final int absPos = position - (sectionAndPos[0] + 1);
return getRowSpan(mLayoutManager.getSpanCount(),
sectionAndPos[0], sectionAndPos[1], absPos);
}
});
}
@SuppressWarnings("UnusedParameters")
protected int getRowSpan(int fullSpanSize, int section, int relativePosition, int absolutePosition) {
return 1;
}
// returns section along with offsetted position
private int[] getSectionIndexAndRelativePosition(int itemPosition) {
synchronized (mHeaderLocationMap) {
Integer lastSectionIndex = -1;
for (final Integer sectionIndex : mHeaderLocationMap.keySet()) {
if (itemPosition > sectionIndex) {
lastSectionIndex = sectionIndex;
} else {
break;
}
}
return new int[]{mHeaderLocationMap.get(lastSectionIndex), itemPosition - lastSectionIndex - 1};
}
}
@Override
public final int getItemCount() {
int count = 0;
mHeaderLocationMap.clear();
for (int s = 0; s < getSectionCount(); s++) {
int itemCount = getItemCount(s);
if (mShowHeadersForEmptySections || (itemCount > 0)) {
mHeaderLocationMap.put(count, s);
count += itemCount + 1;
}
}
return count;
}
/**
* @hide
* @deprecated
*/
@Override
@Deprecated
public final int getItemViewType(int position) {
if (isHeader(position)) {
return getHeaderViewType(mHeaderLocationMap.get(position));
} else {
final int[] sectionAndPos = getSectionIndexAndRelativePosition(position);
return getItemViewType(sectionAndPos[0],
// offset section view positions
sectionAndPos[1],
position - (sectionAndPos[0] + 1));
}
}
@SuppressWarnings("UnusedParameters")
@IntRange(from = 0, to = Integer.MAX_VALUE)
public int getHeaderViewType(int section) {
//noinspection ResourceType
return VIEW_TYPE_HEADER;
}
@SuppressWarnings("UnusedParameters")
@IntRange(from = 0, to = Integer.MAX_VALUE)
public int getItemViewType(int section, int relativePosition, int absolutePosition) {
//noinspection ResourceType
return VIEW_TYPE_ITEM;
}
/**
* @hide
* @deprecated
*/
@Override
@Deprecated
public final void onBindViewHolder(VH holder, int position) {
StaggeredGridLayoutManager.LayoutParams layoutParams = null;
if (holder.itemView.getLayoutParams() instanceof GridLayoutManager.LayoutParams)
layoutParams = new StaggeredGridLayoutManager.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
else if (holder.itemView.getLayoutParams() instanceof StaggeredGridLayoutManager.LayoutParams)
layoutParams = (StaggeredGridLayoutManager.LayoutParams) holder.itemView.getLayoutParams();
if (isHeader(position)) {
if (layoutParams != null) layoutParams.setFullSpan(true);
onBindHeaderViewHolder(holder, mHeaderLocationMap.get(position));
} else {
if (layoutParams != null) layoutParams.setFullSpan(false);
final int[] sectionAndPos = getSectionIndexAndRelativePosition(position);
final int absPos = position - (sectionAndPos[0] + 1);
onBindViewHolder(holder, sectionAndPos[0],
// offset section view positions
sectionAndPos[1], absPos);
}
if (layoutParams != null)
holder.itemView.setLayoutParams(layoutParams);
}
/**
* @hide
* @deprecated
*/
@Deprecated
@Override
public final void onBindViewHolder(VH holder, int position, List<Object> payloads) {
super.onBindViewHolder(holder, position, payloads);
}
}

View file

@ -1,17 +1,45 @@
/**
* Nextcloud Android client application
*
* @author Andy Scherzinger
* Copyright (C) 2016 Andy Scherzinger
* Copyright (C) 2016 Nextcloud
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This program 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 AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.owncloud.android.ui.activity;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.widget.GridLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.MenuItem;
import android.view.View;
import com.owncloud.android.MainApp;
import com.owncloud.android.R;
import com.owncloud.android.ui.adapter.FolderSyncAdapter;
/**
* Activity displaying all auto-synced folders and/or instant upload media folders.
*/
public class FolderSyncActivity extends DrawerActivity {
private static final String TAG = FolderSyncActivity.class.getSimpleName();
private RecyclerView mRecyclerView;
private FolderSyncAdapter mAdapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
@ -31,6 +59,24 @@ public class FolderSyncActivity extends DrawerActivity {
private void setupContent() {
// TODO setup/initialize UI
mRecyclerView = (RecyclerView) findViewById(android.R.id.list);
final int gridWidth = 4;
mAdapter = new FolderSyncAdapter(this, gridWidth, new FolderSyncAdapter.ClickListener() {
@Override
public void onClick(View view, int section, int relative, int absolute) {
selectItem(FolderSyncActivity.this);
}
}, mRecyclerView);
final GridLayoutManager lm = new GridLayoutManager(this, gridWidth);
mAdapter.setLayoutManager(lm);
mRecyclerView.setLayoutManager(lm);
mRecyclerView.setAdapter(mAdapter);
}
public static void selectItem(final Activity context) {
return;
}
@Override

View file

@ -0,0 +1,114 @@
/**
* Nextcloud Android client application
*
* @author Andy Scherzinger
* Copyright (C) 2016 Andy Scherzinger
* Copyright (C) 2016 Nextcloud
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This program 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 AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.owncloud.android.ui.adapter;
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.TextView;
import com.afollestad.sectionedrecyclerview.SectionedRecyclerViewAdapter;
import com.owncloud.android.R;
import java.util.ArrayList;
/**
* Adapter to display all auto-synced folders and/or instant upload media folders.
*/
public class FolderSyncAdapter extends SectionedRecyclerViewAdapter<FolderSyncAdapter.MainViewHolder>
implements View.OnClickListener, View.OnTouchListener {
private static final String TAG = FolderSyncAdapter.class.getSimpleName();
private final Context mContext;
private final int mGridWidth;
private final ClickListener mListener;
private final ArrayList<Object> mCategories;
private final RecyclerView mRecyclerView;
public FolderSyncAdapter(Context context, int gridWidth, ClickListener listener, RecyclerView recyclerView) {
mContext = context;
mGridWidth = gridWidth * 2;
mListener = listener;
mCategories = new ArrayList<>();
mRecyclerView = recyclerView;
}
@Override
public void onClick(View v) {
}
@Override
public boolean onTouch(View v, MotionEvent event) {
return false;
}
@Override
public int getSectionCount() {
return 0;
}
@Override
public int getItemCount(int section) {
return 0;
}
@Override
public void onBindHeaderViewHolder(MainViewHolder holder, int section) {
}
@Override
public void onBindViewHolder(MainViewHolder holder, int section, int relativePosition, int absolutePosition) {
}
@Override
public MainViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
return null;
}
public interface ClickListener {
void onClick(View view, int section, int relative, int absolute);
}
public static class MainViewHolder extends RecyclerView.ViewHolder {
public MainViewHolder(View itemView) {
super(itemView);
image = (ImageView) itemView.findViewById(R.id.image);
title = (TextView) itemView.findViewById(R.id.title);
menuButton = (ImageButton) itemView.findViewById(R.id.syncStatusButton);
mSyncStatusButton = (ImageButton) itemView.findViewById(R.id.settingsButton);
}
final ImageView image;
final TextView title;
final ImageButton menuButton;
final ImageButton mSyncStatusButton;
}
}