为了定义控件的边框,我在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"
>
代码是可以跑起来的,但是旁边会有一个红色感叹号的提示,类似这样:
请问这样如何解决呢?
看提示什麼錯誤,我遇到的這樣的情況一般是因為我放的.9
滑鼠放到黃色的燈泡上可以看到提示,再根據內容做對應的調整
你的linearlayout不是封閉的,用下面的試試,注意最後一行
兄台,我也出現了這個問題,怎麼解決的
我的現在也有!!
我的drawable也是出現,也能用,就沒處理
樓主是怎麼解決的?
補充回答:已經知道原因了。是因為你引用的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