-
Notifications
You must be signed in to change notification settings - Fork 90
137_new_Feature_test #524
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev_sprint_137
Are you sure you want to change the base?
137_new_Feature_test #524
Conversation
4178203 to
60ec495
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot encountered an error and was unable to review this pull request. You can try again by re-requesting a review.
| } | ||
| } | ||
| } | ||
| } |
Copilot
AI
Jan 14, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The button "Reset Map (Save Home)" (btnResetMap) defined in the layout has no click listener implementation in the activity.
| android:id="@+id/btnTtsLangauges" | ||
| style="@style/ButtonCommon" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="wrap_content" | ||
| android:text="TTS of all langauges" /> |
Copilot
AI
Jan 14, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The word "langauges" is misspelled. It should be "languages".
| android:id="@+id/btnTtsLangauges" | |
| style="@style/ButtonCommon" | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" | |
| android:text="TTS of all langauges" /> | |
| android:id="@+id/btnTtsLanguages" | |
| style="@style/ButtonCommon" | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" | |
| android:text="TTS of all languages" /> |
| style="@style/ButtonCommon" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="wrap_content" | ||
| android:text="TTS of all langauges" /> |
Copilot
AI
Jan 14, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The button text contains a misspelling: "langauges" should be "languages".
| android:text="TTS of all langauges" /> | |
| android:text="TTS of all languages" /> |
| android:layout_width="match_parent" | ||
| android:layout_height="0dp" | ||
| android:layout_weight="1" | ||
| android:padding="16.dp"> |
Copilot
AI
Jan 14, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The padding value "16.dp" is incorrectly formatted. It should be "16dp" without the period.
| android:padding="16.dp"> | |
| android:padding="16dp"> |
| super.onCreate(savedInstanceState) | ||
| binding = ActivityTest137Binding.inflate(layoutInflater) | ||
| setContentView(binding.root) | ||
|
|
Copilot
AI
Jan 14, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The back button (ibBack) defined in the layout is not configured with a click listener in this activity. Users will not be able to navigate back using this button.
| binding.ibBack.setOnClickListener { | |
| onBackPressedDispatcher.onBackPressed() | |
| } |
47d3e3d to
1290bd2
Compare
1290bd2 to
bd7803b
Compare
No description provided.