Click here to Skip to main content
15,893,266 members
Articles / Mobile Apps / Android

Simple Notepad for Android

Rate me:
Please Sign up or sign in to vote.
4.68/5 (31 votes)
21 Aug 2014CPOL2 min read 143K   34.1K   43  
A simple notepad for Android
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
     <item android:id="@+id/menu_save"
          android:icon="@drawable/ic_menu_save"
          android:alphabeticShortcut='s'
          android:title="@string/save_menu_noteedit"
          android:showAsAction="ifRoom|withText" />    
    <item android:id="@+id/menu_delete"
          android:icon="@drawable/ic_menu_delete"
          android:title="@string/delete_menu_noteedit"
          android:showAsAction="ifRoom|withText" />
    <item android:id="@+id/menu_about"
    	  android:orderInCategory="100"
          android:showAsAction="never"
          android:title="@string/about"/>
</menu>

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 Code Project Open License (CPOL)


Written By
Japan Japan
Hi! Thank you everyone who reading my article. My major is electronic and programming. Right now I am doing foreign study at Japan. I will like sharing to everyone with my works and if you do interesting with my works, please leave you comment on my blog. Any comments is welcoming.

Comments and Discussions