Ararat is a crossword library for Android, written for and used by alphacross. It includes:
Canvas
View
subclass that handles gameplayFor a demonstration, see the included demo app.
The sample crossword included in the app is Double-A's by Ben Tausig.
Add dependency to app/build.gradle
(check to make sure you're using the
latest version):
dependencies {
implementation 'com.github.0xe1f:ararat:1.0.15'
}
Add view to your layout:
<org.akop.ararat.view.CrosswordView
android:id="@+id/crossword"
android:layout_width="match_parent"
android:layout_height="match_parent" />
Initialize the view in OnCreate()
:
val crosswordView = findViewById<CrosswordView>(R.id.crossword)
crosswordView.crossword = readPuzzle()
Existing puzzles are usually read from a stream, e.g.:
fun readPuzzle(): Crossword = resources.openRawResource(R.raw.puzzle).use { s ->
buildCrossword { PuzFormatter().read(this, s) }
}
For the activity to respond to soft keyboard changes, set
android:windowSoftInputMode
to adjustResize
in the manifest:
<activity android:name=".MainActivity"
android:windowSoftInputMode="adjustResize" />
CrosswordView
was designed to work with the Android soft keyboard.
Unfortunately, with the exception of maybe Google and the AOSP codebase,
virtually no one follows the rules of Android IME, including many third-party
manufacturers and authors of soft keyboards. They will often mistakenly assume
that any view has full support of things like autocorrect and swiping -
concepts that don't work in the limited scope of input needed for crosswords,
and will ignore any attempts to disable those features.
If you're serious about your own crossword app, your best long term bet is to use your own KeyboardView and have it provide the input instead.
Copyright (c) 2014-2022 Akop Karapetyan
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.