Git Product home page Git Product logo

android2021_lut's Introduction

Software Development Skills: Mobile 2020-21

by Yukyeong Kim

About project app

App name:
SimpleNotepad: about create note and save it internally.

Tools used:
Android Studio IDE version 3.6.1, Git,

build.gradle(app)

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.3"
    defaultConfig {
        applicationId "org.lut.simplenotepad"
        minSdkVersion 18
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
        applicationVariants.all{
            variant ->
                variant.outputs.each{
                    output->
                        def name = "Note_R${variant.versionName}.apk"
                        output.outputFileName = name
                }
        }
    }
}

Two basic activities (Views)

  1. MainActivity
    • can write save note, create new note, go to List by menu
  2. NoteSelectActivity
    • can edit modify remove a selected note, create new note

RecyclerView to show list of notes
File writing and saving internally


How To RUN

  1. Download apk file to android device(phone)
  2. Install the app
  3. Open and run the app
  4. Write something in main screen (first screen)
  5. Save button is right bottom corner
  6. To create new note, use button in left bottom corner (+ icon)
  7. To see the all view, click top right menu in toolbar and click "List of Notes"
  8. In Note Select screen, there are all notes saved in the internal storages
  9. Each note has date information (firstly saved date, Day_Month_Year format) and contents (first few lines only) right below date
  10. Select (click) item to see whole content and to modify
  11. Long click(+2 seconds) opens confirm window to remove item action, can delete or not
  12. In Note Select view to create note, use button in right bottom corner

Download apk

you can download apk from below link
Note_R1.0.apk


Demo video Youtube

SimpleNotepad demo1
SimpleNotepad demo2

android2021_lut's People

Contributors

saugkim avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.