当视图聚焦且辅助功能打开时,某些文本会消失

时间:2018-03-13 18:16:47

标签: android accessibility talkback

我在自定义标题栏中有一个textview。在标题栏中,我显示的是一个负责显示页面标题的textview。

以下是我正在使用的代码

的活动:

getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,
                    R.layout.custom_title_layout);

布局文件:

<RelativeLayout 
 xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="200dp"
    android:background="@color/red"
    >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <TextView
            android:id="@+id/title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:ellipsize="end"
            android:maxLines="2"
            android:layout_marginTop="5dp"
            android:layout_marginRight="5dp"
            android:layout_marginLeft="5dp"
            android:layout_marginBottom="5dp"
            android:paddingBottom="5dp"
            android:text="Test Content Transfer"
            android:textColor="#FFFFFF"
            android:textSize="25sp" />
</RelativeLayout>
 - - - - - - -
 - - - - - - - 

</RelativeLayout>

将fount大小更改为巨大并打开应用程序,请注意应用程序正在显示&#34;标题&#34;查看&#34;测试内容Tra ...&#34; (观察到......在这里出现)

当用户启用辅助功能(对讲)时,选择&#34;标题&#34;它显示了视图周围的边框,这是预期的,在此移动时焦点移动到同一屏幕的另一个视图(此处&#34;标题&#34;失去焦点,其他视图现在处于活动状态) &#34;标题&#34;视图文本显示为&#34;测试内容&#34;和&#34;转移&#34;这里缺少一句话。

仅在分辨率较低的某些设备上才会发生这种情况。

对此有何看法?。

1 个答案:

答案 0 :(得分:0)

这只发生在最近版本的三星设备中(我在android O中遇到过这种情况)。

开发人员方面没有什么需要做的。这是一个三星的OEM问题。