안드로이드 메모장 - andeuloideu memojang

이 심플노트라는 앱(어플)은 안드로이드, IOS에서 모두 쓸 수가 있으며 컴퓨터에서 역시 쓸 수가 있습니다. 이는 제가 알기로 워드프레스(Wordpress)에서 제작한 노트 앱으로 알고 있는데요.

이 안드로이드 메모어플은 장점이 이름처럼 아주 심플하다는 것입니다. 그림을 넣을 수 없고 오직 텍스트인 글씨만 저장을 시킬 수가 있습니다.

안드로이드 메모장 - andeuloideu memojang

이렇게 기능도 없는데 많은 유저를 보유하고 있는 이유는 안정성입니다. 약 10년 가까이에 역사를 가지고 있으며 스마트폰과 컴퓨터(pc) 동기화가 빠르고 오류가 없습니다. ※참고: 2017년 2월 기준 윈도우 운영체제의 심플노트 프로그램은 동기화가 가끔씩 꼬이니 웬만하면 웹(WEB)과 스마트폰에서 쓰는 것이 더 좋습니다.

그리고, memo_item.xml 레이아웃을 생성해 recyclerview에 들어갈 아이템 구조를 만들어줍니다. 간단하게 제목, 내용, 날짜 데이터를 뿌려줄 텍스트뷰로만 구성했습니다.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/memoitems"
    android:layout_width="match_parent"
    android:layout_height="60dp"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="10dp"
    android:layout_marginRight="10dp"
    android:orientation="vertical">
    <TextView
        android:id="@+id/mtitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:text="title"/>
    <TextView
        android:id="@+id/mcontent"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:text="content"/>
    <TextView
        android:id="@+id/mdate"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:text="date"/>
</LinearLayout>

이제 activity_main.xml에 적용해 봅니다. androidx.recyclerview.widget.RecyclerView를 사용해 아이템들을 넣어줍니다.

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:listitem="@layout/memo_item">
    </androidx.recyclerview.widget.RecyclerView>

</androidx.constraintlayout.widget.ConstraintLayout>

그럼 아래와 같이 작성한 memo_item이 들어가게 됩니다.

안드로이드 메모장 - andeuloideu memojang

2. 앱에 ADD 버튼 추가하기

activity_main.xml에 버튼을 추가합니다. menu를 사용하겠습니다. 아래 처럼 res우클릭 > new > android resource directory에서 menu로 만들어주고, 그 아래에 다시 memo_add.xml 파일을 만들어줍니다. 

메모 및 목록 보관처리

Keep에서 사용을 마친 메모를 보관하거나 삭제할 수 있습니다.

메모 보관처리

  1. Android 스마트폰 또는 태블릿에서 Keep
    안드로이드 메모장 - andeuloideu memojang
    을 엽니다.
  2. 보관처리할 메모를 탭합니다.
  3. 오른쪽 상단에서 보관처리
    안드로이드 메모장 - andeuloideu memojang
    를 탭합니다.

도움말: 여러 메모를 한꺼번에 보관처리하려면 Keep 홈 화면에서 메모를 길게 터치한 후 더보기

안드로이드 메모장 - andeuloideu memojang
안드로이드 메모장 - andeuloideu memojang
보관처리를 탭합니다.

Wear OS 시계에 메모와 목록을 보관처리하는 방법 자세히 알아보기 

메모 삭제

  1. Android 스마트폰 또는 태블릿에서 Keep
    안드로이드 메모장 - andeuloideu memojang
    을 엽니다.
  2. 삭제하려는 메모를 탭합니다.
  3. 오른쪽 하단에서 작업
    안드로이드 메모장 - andeuloideu memojang
    안드로이드 메모장 - andeuloideu memojang
    삭제
    안드로이드 메모장 - andeuloideu memojang
    를 탭합니다. 메모를 삭제하면 메모를 공유한 사용자에게서도 삭제됩니다.

도움말: 여러 메모를 한꺼번에 삭제하려면 Keep 홈 화면에서 각 메모를 길게 터치한 후 더보기 

안드로이드 메모장 - andeuloideu memojang
 
안드로이드 메모장 - andeuloideu memojang
 ​삭제를 탭합니다.

보관처리된 메모 꺼내기

  1. Android 스마트폰 또는 태블릿에서 Keep
    안드로이드 메모장 - andeuloideu memojang
    을 엽니다.
  2. 왼쪽 상단에서 메뉴
    안드로이드 메모장 - andeuloideu memojang
    안드로이드 메모장 - andeuloideu memojang
    보관처리
    안드로이드 메모장 - andeuloideu memojang
    를 탭합니다.
  3. 메모를 클릭하거나 탭하여 엽니다.
  4. 보관 취소
    안드로이드 메모장 - andeuloideu memojang
    를 클릭하거나 탭합니다.

삭제된 메모 복원

메모를 삭제한 후 7일 이내에 복원할 수 있습니다.

  1. Android 스마트폰 또는 태블릿에서 Keep
    안드로이드 메모장 - andeuloideu memojang
    을 엽니다.
  2. 왼쪽 상단에서 메뉴
    안드로이드 메모장 - andeuloideu memojang
    안드로이드 메모장 - andeuloideu memojang
    휴지통
    안드로이드 메모장 - andeuloideu memojang
    을 탭합니다.
  3. 메모를 클릭하거나 탭하여 엽니다.
  4. 휴지통에서 메모를 꺼내려면 작업
    안드로이드 메모장 - andeuloideu memojang
    안드로이드 메모장 - andeuloideu memojang
    복원을 탭합니다.

휴지통 비우기

언제든지 휴지통을 비울 수 있습니다. 휴지통을 비우면 휴지통에 있는 메모가 영구적으로 삭제됩니다.

  1. Android 스마트폰 또는 태블릿에서 Keep
    안드로이드 메모장 - andeuloideu memojang
    을 엽니다.
  2. 왼쪽 상단에서 메뉴
    안드로이드 메모장 - andeuloideu memojang
    안드로이드 메모장 - andeuloideu memojang
    휴지통
    안드로이드 메모장 - andeuloideu memojang
    을 클릭하거나 탭합니다.
  3. 더보기
    안드로이드 메모장 - andeuloideu memojang
    안드로이드 메모장 - andeuloideu memojang
    휴지통 비우기를 탭합니다.

도움이 되었나요?

어떻게 하면 개선할 수 있을까요?

예아니요

제출

Android 컴퓨터iPhone/iPad