Click here to Skip to main content
15,885,216 members
Articles / Mobile Apps / Android

Nim Challenge

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
26 Jul 2012Apache7 min read 33.5K   1.2K   15  
Nim game for Android devices
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
				  android:title="@string/settings">
        <ListPreference android:title="@string/theme"
                        android:summary="@string/theme_summary"
                        android:defaultValue="classic"
                        android:key="Theme"
                        android:entries="@array/themes"
                        android:entryValues="@array/themes_values"></ListPreference>
        <CheckBoxPreference android:title="@string/single_touch"
                            android:summary="@string/single_touch_summary"
                            android:defaultValue="false"
                            android:key="SingleTouch"></CheckBoxPreference>
        <CheckBoxPreference android:title="@string/last_wins"
                            android:summary="@string/last_wins_summary"
                            android:defaultValue="true"
                            android:key="LastWins"></CheckBoxPreference>
        <CheckBoxPreference android:title="@string/custom_board_instructions"
                  android:summary="@string/show_custom_board_instructions"
                  android:defaultValue="true"
                  android:key="Show_Custom_Board_Instructions"></CheckBoxPreference>   
</PreferenceScreen>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Software Developer (Senior) Self employed
Greece Greece
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions