android-studio - android studio有红色感叹号是怎么回事?
高洛峰
高洛峰 2017-04-17 16:08:31
0
7
1103

为了定义控件的边框,我在drawable里面新建了一个xml文件,文件内容如下:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:shape="rectangle"
    >

    <solid android:color="#FFFFFF" />

    <stroke
        android:width="0.01dp"
        android:color="@color/zhonghui" />

    <padding
        android:bottom="1dp"
        android:left="0.5dp"
        android:right="0.5dp"
        android:top="0dp" />
</shape>

然后设置了EditText的背景为这个xml文件:

 <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:layout_marginLeft="30dp"
        android:layout_marginRight="30dp"
        android:paddingTop="20dp"
        android:paddingBottom="20dp"
        android:orientation="vertical"
        android:background="@drawable/border"
        >

代码是可以跑起来的,但是旁边会有一个红色感叹号的提示,类似这样:

请问这样如何解决呢?

高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

全部回覆(7)
巴扎黑

看提示什麼錯誤,我遇到的這樣的情況一般是因為我放的.9

伊谢尔伦

滑鼠放到黃色的燈泡上可以看到提示,再根據內容做對應的調整

巴扎黑

你的linearlayout不是封閉的,用下面的試試,注意最後一行

    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:layout_marginLeft="30dp"
    android:layout_marginRight="30dp"
    android:paddingTop="20dp"
    android:paddingBottom="20dp"
    android:orientation="vertical"
    android:background="@drawable/border"
    />

PHPzhong

兄台,我也出現了這個問題,怎麼解決的

巴扎黑

我的現在也有!!

迷茫

我的drawable也是出現,也能用,就沒處理

Peter_Zhu

樓主是怎麼解決的?

補充回答:已經知道原因了。是因為你引用的drawable資源無法被android studio顯示在左邊欄,所以as很任性的選擇了紅色感嘆號來發洩它的不滿。苦逼的是我們這些程式設計師。 。換句話說:it's not an error from the code 放心吧。
以下是stackoverflow的解釋:
http://stackoverflow.com/questions/33029295/android-studio-shows-red-exclamation-at-drawable-attribute

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板