android开发有语法错误,请大牛指点
<TextView
android:id="@+id/myTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<Button
android:id="@+id/myButton"/
android:layout_width="fill_parent
android:layout_height="wrap_content""
/>
</LinearLayout>
import android.app.Activity;
import android.os.Bundle;
public class Activity01Activity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
红字的部分有错,应该不是空格的问题,而且现在xml文件当中编写过了却在R.java文件当中无法显示id,甚至原来就没有id类
而且现在有错没法刷新文件。请大牛指点