Skip to content

Commit 4dc6c69

Browse files
authored
fix: use multiple lines for long names on call screen (#716)
Refs: #286
1 parent 7b64ab7 commit 4dc6c69

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
## [Unreleased]
88
### Fixed
99
- Fixed truncated long names in call history ([#157])
10+
- Fixed truncated long names on call screen ([#286])
1011

1112
## [1.11.0] - 2026-01-30
1213
### Added
@@ -247,6 +248,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
247248
[#186]: https://github.com/FossifyOrg/Phone/issues/186
248249
[#196]: https://github.com/FossifyOrg/Phone/issues/196
249250
[#237]: https://github.com/FossifyOrg/Phone/issues/237
251+
[#286]: https://github.com/FossifyOrg/Phone/issues/286
250252
[#293]: https://github.com/FossifyOrg/Phone/issues/293
251253
[#307]: https://github.com/FossifyOrg/Phone/issues/307
252254
[#357]: https://github.com/FossifyOrg/Phone/issues/357

app/src/main/res/layout/activity_call.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,9 @@
7878
android:layout_width="0dp"
7979
android:layout_height="wrap_content"
8080
android:layout_marginTop="@dimen/bigger_margin"
81+
android:ellipsize="end"
8182
android:gravity="center_horizontal"
82-
android:maxLines="1"
83+
android:maxLines="2"
8384
android:paddingStart="@dimen/medium_margin"
8485
android:paddingEnd="@dimen/medium_margin"
8586
android:textSize="@dimen/caller_name_text_size"

0 commit comments

Comments
 (0)