我的设计视图不呈现我的XML布局元素

时间:2016-10-01 00:29:45

标签: xml android-studio-2.2

当我运行我的Android工作室时,它的Gradle同步没有错误并且很好地渲染布局元素,在我将其更新到Android Studio 2.2之后它向我展示了这些警告

Warning:WARNING: Dependency xpp3:xpp3:1.1.4c is ignored for debug as it may be conflicting with the internal version provided by Android.

我将它用于我的xml后,它向我显示了这个错误

Warning:WARNING: Dependency xpp3:xpp3:1.1.4c is ignored for debug as it may be conflicting with the internal version provided by Android.

C:\Users\Declan\Documents\Android\Flip\app\build\intermediates\res\merged\debug\values\values.xml

错误:(685)撇号前面没有\(在Int' l代码中) 错误:(685)撇号前面没有\(在Int' l代码中) C:\用户\德克兰\文档\的Android \翻转\程序\编译\中间体\水库\合并\调试\布局\ activity_main.xml中 错误:(12,17)资源ID不能是空字符串(在' id'值为' @ + id /')。 C:\用户\德克兰\文档\的Android \翻转\程序\编译\中间体\水库\合并\调试\布局\ authpopup.xml 错误:(182,27)找不到与给定名称匹配的资源(在'提示'值为' @ string / Code')。 错误:任务':app:processDebugResources'执行失败。

  

com.android.ide.common.process.ProcessException:无法执行aapt   错误:(182,27)找不到与给定名称匹配的资源(在'提示'值为' @ string / Code')。   C:\用户\德克兰\文件\的Android \翻转\应用\ SRC \主\ RES \布局\ authpopup.xml   错误:(12,17)资源ID不能是空字符串(在' id'值为' @ + id /')。   C:\用户\德克兰\文件\的Android \翻转\应用\ SRC \主\ RES \布局\ activity_main.xml中

错误:任务':app:processDebugResources'执行失败。

  

com.android.ide.common.process.ProcessException:无法执行aapt   错误:(182,27)找不到与给定名称匹配的资源(在'提示'值为' @ string / Code')。   但是我的authpopup.xml

 <LinearLayout
    android:id="@+id/slot"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:gravity="center"
    android:layout_marginTop="40dp"
    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"
    android:layout_below="@+id/Info"
    android:layout_centerHorizontal="true">
    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/countrycode"
        android:hint="@string/Code" />

    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:inputType="phone"
        android:ems="10"
        android:id="@+id/phone_number_slot"
        android:hint="@string/TypeNumber"/></LinearLayout>

my strings.xml

 <string name="TypeNumber">Type your phonenumber</string>
<string name="Code">Int'l code</string>

我的value.xml开始为highligt <resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2"> //as URI not registered(Settings|Language&Frameworks|SchemasandDTDs) red

专家帮助,感到沮丧。我的XML布局都没有渲染 您认为这是什么问题?

0 个答案:

没有答案