-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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 #11944 from wordpress-mobile/issue/11783-update-ep…
…ilogue-ui Unified Login & Sign-Up: Epilogue screen UI update
- Loading branch information
Showing
34 changed files
with
637 additions
and
579 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
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
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
21 changes: 21 additions & 0 deletions
21
WordPress/src/main/java/org/wordpress/android/ui/accounts/login/LoginFooterViewHolder.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,21 @@ | ||
package org.wordpress.android.ui.accounts.login; | ||
|
||
import android.view.View; | ||
import android.widget.TextView; | ||
|
||
import androidx.recyclerview.widget.RecyclerView; | ||
|
||
import org.wordpress.android.R; | ||
|
||
public class LoginFooterViewHolder extends RecyclerView.ViewHolder { | ||
private final TextView mFooterTextView; | ||
|
||
LoginFooterViewHolder(View view) { | ||
super(view); | ||
mFooterTextView = view.findViewById(R.id.footer_text_view); | ||
} | ||
|
||
public void bindText(String text) { | ||
mFooterTextView.setText(text); | ||
} | ||
} |
Oops, something went wrong.