Skip to content

Commit

Permalink
Merge pull request #505 from shikoko/ANDROID-598
Browse files Browse the repository at this point in the history
ANDROID-598 No task history displayed
  • Loading branch information
shikoko authored Oct 11, 2018
2 parents de5670c + 8021548 commit 83bee0e
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import org.alfresco.mobile.android.application.fragments.DisplayUtils;
import org.alfresco.mobile.android.application.fragments.user.UserProfileFragment;
import org.alfresco.mobile.android.ui.fragments.BaseListAdapter;
import org.alfresco.mobile.android.ui.holder.ViewHolder;
import org.alfresco.mobile.android.ui.rendition.RenditionManager;

import android.support.v4.app.FragmentActivity;
Expand Down Expand Up @@ -159,26 +158,3 @@ public void onClick(View v)
.placeHolder(R.drawable.ic_person_light).into(vh.icon);
}
}

final class ProcessViewHolder extends ViewHolder
{
public TextView topText;

public TextView bottomText;

public ImageView icon;

public ImageView icon_statut;

public TextView content;

public ProcessViewHolder(View v)
{
super(v);
icon = (ImageView) v.findViewById(R.id.icon);
icon_statut = (ImageView) v.findViewById(R.id.icon_status);
topText = (TextView) v.findViewById(R.id.toptext);
bottomText = (TextView) v.findViewById(R.id.bottomtext);
content = (TextView) v.findViewById(R.id.contentweb);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
package org.alfresco.mobile.android.application.fragments.workflow.process;

import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;

import org.alfresco.mobile.android.application.R;
import org.alfresco.mobile.android.ui.holder.ViewHolder;

/**
* Created by Bogdan Roatis on 10/11/2018.
*/
public class ProcessViewHolder extends ViewHolder
{
public TextView topText;

public TextView bottomText;

public ImageView icon;

public ImageView icon_statut;

public TextView content;

public ProcessViewHolder(View v)
{
super(v);
icon = v.findViewById(R.id.icon);
icon_statut = v.findViewById(R.id.icon_status);
topText = v.findViewById(R.id.toptext);
bottomText = v.findViewById(R.id.bottomtext);
content = v.findViewById(R.id.contentweb);
}
}

0 comments on commit 83bee0e

Please sign in to comment.