Android 系统APK-录音机 横屏显示时录制时间不居中
Posted 王睿丶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 系统APK-录音机 横屏显示时录制时间不居中相关的知识,希望对你有一定的参考价值。
路径: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"/>
系统APK 开发系列:
Android 系统APK-录音机 横屏显示时录制时间不居中
Android 系统APK-录音机 录音过程不能受外部USB插拔影响
Android 系统APK-闹钟 长按进入夜间模式,松开退出夜间模式
Android 系统APK-闹钟 移除时钟内的音量按钮
Android 系统APK-音乐和视频 暂停、上一首、下一首按键修复
以上是关于Android 系统APK-录音机 横屏显示时录制时间不居中的主要内容,如果未能解决你的问题,请参考以下文章
Android 系统APK-录音机 录音过程不能受外部USB插拔影响
Android 11.0 修复在录音机APK(SoundRecorder),录音时不受外部USB插拔影响