3

I want to write a simple application on Android for my own use.

I want to add an alarm. How do I make a list of alarms and add them?

It's about something like the picture.

enter image description here

JasonMArcher
  • 14,195
  • 22
  • 56
  • 52
Silesia
  • 67
  • 1
  • 9

2 Answers2

1

here is the link of Android alarm app source code, git_alarm_app

it can be helpful if you are doing similar.. You can see how this app does things and help yourself..

AAnkit
  • 27,299
  • 12
  • 60
  • 71
  • the last commit on this app is before 4 years it gave me alot of errors in xml like 'error: Error: String types not allowed (at 'layout_height' with value 'match_parent')' why – shareef Dec 24 '12 at 08:09
  • on what android version it is i tried many but looks the sdk is updated since then – shareef Dec 24 '12 at 08:23
  • 1
    Please have a look on code, how it deals with alarms, as i Said it can be helpful if you are doing same kinda app!! – AAnkit Dec 26 '12 at 06:28
0

You have to create a layout for items of the ListView.

You can find tutorials about this on Internet : http://www.vogella.com/articles/AndroidListView/article.html http://codehenge.net/blog/2011/05/customizing-android-listview-item-layout/

Guillaume
  • 8,741
  • 11
  • 49
  • 62