我正试图在this link的答案中设置一个边框来包装我的编辑文本。
但是,当我尝试对其进行充气以试用它是如何工作时,我收到错误
android.view.InflateException: Binary XML file line #4: Error inflating class shape
为什么会这样?
修改
我将其粘贴到XML文件(edittext.xml)
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<shape
android:shape="rectangle">
<solid android:color="#FAFAD2" />
<stroke android:width="1sp" android:color="#000000"
android:dashWidth="7sp" android:dashGap="5sp" />
</shape>
</FrameLayout>
public class EditBox extends View {
private LayoutInflater layoutInflater;
private FrameLayout viewLayout;
public EditBox(Context context) {
super(context);
try {
layoutInflater = (LayoutInflater) context.getSystemService (Context.LAYOUT_INFLATER_SERVICE);
viewLayout = (FrameLayout) layout_inflater.inflate(R.layout.edittext, null);
} catch(Exception e) {
e.printStackTrace();
}
}
public View getView() {
return viewLayout;
}
}
答案 0 :(得分:0)
形状应在可绘制文件夹中的xml中定义