在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):worldsproject/android-jigsaw-puzzle-library开源软件地址(OpenSource Url):https://github.com/worldsproject/android-jigsaw-puzzle-library开源编程语言(OpenSource Language):Java 100.0%开源软件介绍(OpenSource Introduction):An Android library that facilites the creation of Jigsaw puzzles. All code is GPLv3 How do I create puzzles with the puzzle librarySo, you have the puzzle library as an eclipse project, and it's built all properly, with no errors.
super.onCreate(savedInstanceState);
int[] mImageIds = { R.drawable.image1, R.drawable.image2, };
Intent intent = new Intent(this, PuzzleSelectActivity.class);
intent.putExtra("images", mImageIds);
this.startActivity(intent);
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<activity android:name="org.worldsproject.puzzle.PuzzleSolveActivity" >
</activity>
<activity android:name="org.worldsproject.puzzle.PuzzleSelectActivity" >
</activity> You should be able to run MyPuzzle and it will display the two images as available puzzles. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论