0

我的布局文件中有一个文本视图。我的 textview 包含简单的 c++ 代码。我已经包含了除 '\0' 字符之外的所有其他特殊字符。谁能告诉我如何在我的布局文件中包含这个错误?

#include<iostream.h>
#include<conio.h>
#include<stdio.h>

void main()
{
 clrscr();
 char a[100];
 int length=0;
 cout<<"Enter String:";
 gets(a);
 while(a[length]!='\0')
 length++;
 cout<<"Length of String:";
 cout<<length;
 getch();
}
4

2 回答 2

1

试试这个:

change parent="android:Theme.Holo.Dark" to parent="android:Theme.Holo"

The holo dark theme is called Holo
于 2013-02-04T07:28:29.130 回答
1

试试这个

&apos;\0&apos; 

代替'\0'

于 2013-02-04T07:38:39.700 回答