我用的3.1的版本,为啥对布局进行预览时中文不显示,这是要怎么弄
来源:7-1 注册UI及验证逻辑实现
我有明珠一颗
2019-11-11
布局文件
<?xml version="1.0" encoding="utf-8"?> <android.support.v7.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <android.support.v7.widget.AppCompatTextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="50dp" android:text="@string/happy" android:textColor="@android:color/holo_red_dark" android:textSize="30sp" /> </android.support.v7.widget.LinearLayoutCompat>
字符串资源文件有两个
strings.xml
<resources> <string name="app_name" translatable="false">LatteNew</string> <string name="happy">hhh</string> </resources>
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name" translatable="false">LatteNew</string> <string name="happy">哈哈哈</string> </resources>
写回答
1回答
-
傅猿猿
2019-11-11
实时刷新问题,这种情况你按右上角的刷新按钮就能刷出来。
012019-11-12
相似问题