Android Google play资源覆盖字符串值

Android Google play资源覆盖字符串值,android,resources,Android,Resources,我有一个支持几种语言的应用程序。当我使用一种受支持的语言时,一切都很好,但当我使用默认语言(phone on unsupported language(希伯来语))时,我的一个字符串会被play services包中的字符串覆盖。因此,此特定字符串将转换为不支持的语言。(希伯来语)资源路径看起来很正常 <TextView android:layout_width="match_parent" android:layout_he

我有一个支持几种语言的应用程序。当我使用一种受支持的语言时,一切都很好,但当我使用默认语言(phone on unsupported language(希伯来语))时,我的一个字符串会被play services包中的字符串覆盖。因此,此特定字符串将转换为不支持的语言。(希伯来语)资源路径看起来很正常

<TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_margin="@dimen/margin_10dp"
                android:layout_toRightOf="@+id/iconFeedback"
                android:elevation="3dp"
                android:text="@string/accept"
                android:textAlignment="center"
                android:textSize="16dp"
                android:textColor="@color/white" /> 

为什么会这样? 谢谢你的建议