我有自定义EditText布局的自定义xml。但我总是有这样的消息:
这是我自定义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>
答案 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
。