找不到元素'shape'的架构信息

时间:2017-10-03 02:25:44

标签: android xml xamarin.android

我有自定义EditText布局的自定义xml。但我总是有这样的消息:

enter image description here

这是我自定义EditText布局的代码:

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

       android:thickness="0dp"

       android:shape="rectangle">
    <stroke android:width="3dp"

           android:color="#4799E8"/>
    <corners android:radius="5dp" />
    <gradient

     android:startColor="#C8C8C8"

     android:endColor="#FFFFFF"

     android:type="linear"

     android:angle="270"/>
  </shape>
</set>

1 个答案:

答案 0 :(得分:1)

在您的代码中使用此功能。

steps = 200*1000; % You might also want to replace 200*1000 in the for-loop with 'steps'

T = zeros(1,steps);
Ft = zeros(1,steps);
xddot = zeros(1,steps);
xdot = zeros(1,steps);
w = zeros(1,steps);

w(1) = 0.001;
xdot(1) = 0.001;

删除代码中的set标记。

注意

您应该在<?xml version="1.0" encoding="utf-8" ?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:thickness="0dp" android:shape="rectangle"> <stroke android:width="3dp" android:color="#4799E8"/> <corners android:radius="5dp" /> <gradient android:startColor="#C8C8C8" android:endColor="#FFFFFF" android:type="linear" android:angle="270"/> </shape> 目录中添加shape xml代码。

修改

删除项目视图中的drawable并重新运行为android应用程序。

并重新更新inputText.xml