Android 11.0 修复在录音机APK(SoundRecorder),横屏显示时录制时间不能居中

Posted 王睿丶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 11.0 修复在录音机APK(SoundRecorder),横屏显示时录制时间不能居中相关的知识,希望对你有一定的参考价值。

路径:packages/apps/SoundRecorder/res/layout-land/main.xml

思路:layout-land 表示横屏时选用的布局,这时在++处,将录制时间字段居中即可

android:layout_centerInParent="true"

源码:

    <RelativeLayout android:id="@+id/timerViewLayout"
        android:layout_width="match_parent"
        android:layout_height="134dip"
        android:background="@drawable/gradient_bg">

        <TextView android:id="@+id/timerView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="115dip"
++       android:layout_centerInParent="true"
            android:layout_marginTop="-4dip"
            android:layout_marginRight="10dip"
            style="@android:style/TextAppearance.Large" />

        <LinearLayout android:id="@+id/stateMessage2Layout"
            android:orientation="horizontal"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:baselineAligned="false"/>

以上是关于Android 11.0 修复在录音机APK(SoundRecorder),横屏显示时录制时间不能居中的主要内容,如果未能解决你的问题,请参考以下文章

Android 11.0 修复在计算器APK(Calculator),按一次Backspace键会删掉两个字符

Android 11.0 修复Settings→wifi→添加网络→扫描二维码界面上下压缩

Android 11.0 在闹钟APK,移除时钟音量按钮

Android 11.0 删除系统APK

Android 系统APK-录音机 录音过程不能受外部USB插拔影响

Android 11.0 在闹钟APK,长按进入夜间模式,松开退出夜间模式