-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #504 from shikoko/ANDROID-386
ANDROID-386 Cannot cancel request to join sites
- Loading branch information
Showing
2 changed files
with
32 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
...va/org/alfresco/mobile/android/application/fragments/site/request/JoinSiteViewHolder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package org.alfresco.mobile.android.application.fragments.site.request; | ||
|
||
import android.view.View; | ||
import android.widget.Button; | ||
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 JoinSiteViewHolder extends ViewHolder | ||
{ | ||
public TextView topText; | ||
|
||
public TextView bottomText; | ||
|
||
public ImageView icon; | ||
|
||
public Button cancel_request; | ||
|
||
public JoinSiteViewHolder(View v) | ||
{ | ||
super(v); | ||
icon = v.findViewById(R.id.icon); | ||
topText = v.findViewById(R.id.toptext); | ||
bottomText = v.findViewById(R.id.bottomtext); | ||
cancel_request = v.findViewById(R.id.cancel_request); | ||
} | ||
} |