Text in usage side label was set to normal when making a design. However, the default configuration got changed since Android Q which applied to all TextView. Therefore, add it back to maintain original behaviour. Bug: 185129745 Change-Id: I351f8e08cc9ba6e0d301e510ee10b6be890b0059 Test: build pass
22 lines
888 B
XML
22 lines
888 B
XML
<!--
|
|
Copyright (C) 2016 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<TextView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:hyphenationFrequency="normal"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|