这个项目是学习慕课网上Android-五子连珠写的demo示例. 基于Android Studio编译器,gradle编译.并且增加了自定义属性.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:gomoku="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg"
tools:context="watch.com.wuziqi.MainActivity">
<watch.com.wuziqi.view.GomokuPanel
android:id="@+id/id_fir_panel"
android:layout_centerInParent="true"
android:layout_width="match_parent"
android:layout_height="match_parent"
gomoku:gomoku_black_pic="@drawable/stone_b1"
gomoku:gomoku_white_pic="@drawable/stone_w2"
gomoku:gomoku_board_color="#4b814c"/>
</RelativeLayout>
自定义属性:
- gomoku_black_pic: 黑子图片
- gomoku_white_pic: 白子图片
- gomoku_board_color: 棋盘颜色