adt新建的项目就有错误,为什么啊?
adt新建的项目就有错误,为什么啊?
adt新建的项目就有错误,为什么啊?
2016-11-22
你的xml文件activity没有布局(layout),你可以点开看,应该是空的,自己加一个布局吧!
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="com.hello_world.MainActivity" > <!-- 控件放在这 --> </RelativeLayout> <!-- 勿删放在最后 -->
这是我的相对布局,不知道你能不能用!
举报