五子棋一定要在AndroidStudio里面写嘛?在eclipse里面写的运行不出来……
eclipse的xml布局文件可以这么写嘛?
<zlin.wuziqi.WuziqiPanel
不知道为啥都运行不出来,oncreate里面的 setContentView(R.layout.activity_main);
都执行不了
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
布局文件也是按照老师的写的
<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:background="@drawable/bg"
tools:context="${relativePackage}.${activityClass}" >
<zlin.wuziqi.WuziqiPanel
android:id="@+id/id_panel"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</RelativeLayout>
