Revision 2a8ee748
Added by Leszek Koltunski over 7 years ago
| src/main/java/org/distorted/examples/TableOfContents.java | ||
|---|---|---|
| 334 | 334 |
activityMapping.put(i++, MirrorActivity.class); |
| 335 | 335 |
} |
| 336 | 336 |
|
| 337 |
{
|
|
| 338 |
final Map<String, Object> item = new HashMap<>(); |
|
| 339 |
item.put(ITEM_IMAGE, R.drawable.icon_example_stencil); |
|
| 340 |
item.put(ITEM_TITLE, (i+1)+". "+getText(R.string.example_stencil)); |
|
| 341 |
item.put(ITEM_SUBTITLE, getText(R.string.example_stencil_subtitle)); |
|
| 342 |
data.add(item); |
|
| 343 |
activityMapping.put(i++, StencilActivity.class); |
|
| 344 |
} |
|
| 345 |
|
|
| 337 | 346 |
{
|
| 338 | 347 |
final Map<String, Object> item = new HashMap<>(); |
| 339 | 348 |
item.put(ITEM_IMAGE, R.drawable.icon_example_blur); |
| ... | ... | |
| 379 | 388 |
activityMapping.put(i++, PostprocessTreeActivity.class); |
| 380 | 389 |
} |
| 381 | 390 |
|
| 382 |
{
|
|
| 383 |
final Map<String, Object> item = new HashMap<>(); |
|
| 384 |
item.put(ITEM_IMAGE, R.drawable.icon_example_stencil); |
|
| 385 |
item.put(ITEM_TITLE, (i+1)+". "+getText(R.string.example_stencil)); |
|
| 386 |
item.put(ITEM_SUBTITLE, getText(R.string.example_stencil_subtitle)); |
|
| 387 |
data.add(item); |
|
| 388 |
activityMapping.put(i++, StencilActivity.class); |
|
| 389 |
} |
|
| 390 |
|
|
| 391 | 391 |
{
|
| 392 | 392 |
final Map<String, Object> item = new HashMap<>(); |
| 393 | 393 |
item.put(ITEM_IMAGE, R.drawable.icon_example_wip); |
| ... | ... | |
| 399 | 399 |
|
| 400 | 400 |
{
|
| 401 | 401 |
final Map<String, Object> item = new HashMap<>(); |
| 402 |
item.put(ITEM_IMAGE, R.drawable.icon_example_wip);
|
|
| 402 |
item.put(ITEM_IMAGE, R.drawable.icon_example_movingglow);
|
|
| 403 | 403 |
item.put(ITEM_TITLE, (i+1)+". "+getText(R.string.example_moving_glow)); |
| 404 | 404 |
item.put(ITEM_SUBTITLE, getText(R.string.example_moving_glow_subtitle)); |
| 405 | 405 |
data.add(item); |
Also available in: Unified diff
Progress with thr Glow effect - moving glow app looks ok now.