mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
Also allow text to be selected in file/config viewers
This commit is contained in:
parent
ddffecb4eb
commit
355dd493d2
3 changed files with 4 additions and 1 deletions
|
|
@ -15,6 +15,7 @@ Group changes to describe their impact on the project, as follows:
|
|||
### Added
|
||||
- LDAP settings if SDK is built with OpenLDAP (requires 5.1.1 or higher linphone-sdk), will add contacts if any
|
||||
- SIP addresses & phone numbers can be selected in history & contact details view
|
||||
- Text can be selected in file viewer & config viewer
|
||||
- Prevent screen to turn off while recording a voice message
|
||||
|
||||
### Changed
|
||||
|
|
|
|||
|
|
@ -64,7 +64,8 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_margin="10dp"
|
||||
android:singleLine="false"
|
||||
android:text="@{viewModel.text}"/>
|
||||
android:textIsSelectable="true"
|
||||
android:text="@{viewModel.text}" />
|
||||
|
||||
</ScrollView>
|
||||
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_margin="10dp"
|
||||
android:singleLine="false"
|
||||
android:textIsSelectable="true"
|
||||
android:text="@{viewModel.text}"/>
|
||||
|
||||
</ScrollView>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue