Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_android_sdk_maven_plugin
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Panagiotis Triantafyllou
2026-03-19 16:24:33 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
302c79ede33388cf50b27aa4919da714711d2ed2
302c79ed
1 parent
926a7c92
minor fixes
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
warply_android_sdk/src/main/java/ly/warp/sdk/activities/HomeActivity.java
warply_android_sdk/src/main/java/ly/warp/sdk/activities/HomeActivity.java
View file @
302c79e
...
...
@@ -576,7 +576,7 @@ public class HomeActivity extends Activity implements View.OnClickListener, Coup
}
TextView
tvQuestionCount
=
dialogView
.
findViewById
(
R
.
id
.
tv_question_count
);
tvQuestionCount
.
setText
(
String
.
valueOf
(
mCurrentQuestionIndex
)
+
"/"
+
String
.
valueOf
(
questionnaire
.
getQuestions
().
size
()));
tvQuestionCount
.
setText
(
String
.
valueOf
(
mCurrentQuestionIndex
)
+
"/"
+
String
.
valueOf
(
questionnaire
.
getQuestions
().
size
()
-
1
));
TextView
tvQuestionHeaderTitle
=
dialogView
.
findViewById
(
R
.
id
.
tv_question_header_title
);
TextView
tvQuestionHeaderSubtitle
=
dialogView
.
findViewById
(
R
.
id
.
tv_question_subtitle
);
...
...
Please
register
or
login
to post a comment