Skip to content

Commit 58539f2

Browse files
author
harvey
committed
first commit
1 parent 38e9f17 commit 58539f2

40 files changed

+892
-0
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/workspace.xml
5+
/.idea/libraries
6+
.DS_Store
7+
/build
8+
/captures

.idea/.name

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

+22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

+19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+62
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/build.gradle

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
apply plugin: 'com.android.application'
2+
apply plugin: 'realm-android'
3+
4+
android {
5+
compileSdkVersion 23
6+
buildToolsVersion "23.0.2"
7+
8+
defaultConfig {
9+
applicationId "com.example.harvey.simpletodo"
10+
minSdkVersion 16
11+
targetSdkVersion 23
12+
versionCode 1
13+
versionName "1.0"
14+
}
15+
buildTypes {
16+
release {
17+
minifyEnabled false
18+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
19+
}
20+
}
21+
}
22+
23+
dependencies {
24+
compile fileTree(dir: 'libs', include: ['*.jar'])
25+
testCompile 'junit:junit:4.12'
26+
compile 'com.android.support:appcompat-v7:23.1.1'
27+
}

app/proguard-rules.pro

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Add project specific ProGuard rules here.
2+
# By default, the flags in this file are appended to flags specified
3+
# in /Users/harvey/Library/Android/sdk/tools/proguard/proguard-android.txt
4+
# You can edit the include path and order by changing the proguardFiles
5+
# directive in build.gradle.
6+
#
7+
# For more details, see
8+
# http://developer.android.com/guide/developing/tools/proguard.html
9+
10+
# Add any project specific keep options here:
11+
12+
# If your project uses WebView with JS, uncomment the following
13+
# and specify the fully qualified class name to the JavaScript interface
14+
# class:
15+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16+
# public *;
17+
#}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package com.example.harvey.simpletodo;
2+
3+
import android.app.Application;
4+
import android.test.ApplicationTestCase;
5+
6+
/**
7+
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
8+
*/
9+
public class ApplicationTest extends ApplicationTestCase<Application> {
10+
public ApplicationTest() {
11+
super(Application.class);
12+
}
13+
}

app/src/main/AndroidManifest.xml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest package="com.example.harvey.simpletodo"
3+
xmlns:android="http://schemas.android.com/apk/res/android">
4+
5+
<application
6+
android:allowBackup="true"
7+
android:icon="@mipmap/ic_launcher"
8+
android:label="@string/app_name"
9+
android:supportsRtl="true"
10+
android:theme="@style/AppTheme">
11+
<activity android:name=".SimpleTodo">
12+
<intent-filter>
13+
<action android:name="android.intent.action.MAIN"/>
14+
15+
<category android:name="android.intent.category.LAUNCHER"/>
16+
</intent-filter>
17+
</activity>
18+
<activity android:name=".EditItemActivity">
19+
</activity>
20+
</application>
21+
22+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package com.example.harvey.simpletodo;
2+
3+
/**
4+
* Created by harvey on 6/14/16.
5+
*/
6+
public class Constant {
7+
public static String Edit_Name = "edit_name";
8+
public static String Name_Position = "name_position";
9+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
package com.example.harvey.simpletodo;
2+
3+
import android.content.Intent;
4+
import android.support.v7.app.AppCompatActivity;
5+
import android.os.Bundle;
6+
import android.text.Editable;
7+
import android.view.View;
8+
import android.widget.Button;
9+
import android.widget.EditText;
10+
11+
public class EditItemActivity extends AppCompatActivity {
12+
private EditText mEditText;
13+
private Button mSave;
14+
private int mPosition;
15+
@Override
16+
protected void onCreate(Bundle savedInstanceState) {
17+
super.onCreate(savedInstanceState);
18+
setContentView(R.layout.activity_edit_item);
19+
mEditText = (EditText) findViewById(R.id.editText);
20+
mSave = (Button) findViewById(R.id.button);
21+
final Intent intent = getIntent();
22+
String name = intent.getStringExtra(Constant.Edit_Name);
23+
mPosition = intent.getIntExtra(Constant.Name_Position, 0);
24+
25+
mEditText.setText(name);
26+
27+
int len = name.length();
28+
// Editable etext = mEditText.getText();
29+
// mEditText.setSelection(, len);
30+
mEditText.setSelection(len);
31+
32+
mSave.setOnClickListener(new View.OnClickListener() {
33+
@Override
34+
public void onClick(View v) {
35+
36+
String name = mEditText.getText().toString();
37+
Intent intentMessage = new Intent();
38+
// put the message to return as result in Intent
39+
intentMessage.putExtra(Constant.Name_Position, mPosition);
40+
intentMessage.putExtra(Constant.Edit_Name, name);
41+
// Set The Result in Intent
42+
setResult(2, intentMessage);
43+
finish();
44+
}
45+
});
46+
}
47+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package com.example.harvey.simpletodo;
2+
3+
import io.realm.RealmObject;
4+
import io.realm.annotations.PrimaryKey;
5+
6+
/**
7+
* Created by harvey on 6/14/16.
8+
*/
9+
public class ItemData extends RealmObject{
10+
@PrimaryKey
11+
protected String name;
12+
13+
public String getName() {
14+
return name;
15+
}
16+
17+
public void setName(String name) {
18+
this.name = name;
19+
}
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package com.example.harvey.simpletodo;
2+
3+
import android.util.Log;
4+
5+
/**
6+
* Created by harvey on 6/14/16.
7+
*/
8+
public class MyLog {
9+
public static void print(String msg) {
10+
Log.d("harvey", ""+msg);
11+
}
12+
}

0 commit comments

Comments
 (0)