Skip to content

Commit 71dfab1

Browse files
committed
Adds com.vogella.android.testapp with real content to the repo
1 parent e73bb19 commit 71dfab1

39 files changed

Lines changed: 1067 additions & 0 deletions
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
5+
signingConfigs {
6+
config {
7+
keyAlias 'testkey'
8+
keyPassword 'testing1'
9+
storeFile file('/home/vogella/temp/test.keystore')
10+
storePassword 'testing1'
11+
}
12+
}
13+
14+
compileSdkVersion 27
15+
defaultConfig {
16+
applicationId "com.vogella.android.testapp"
17+
minSdkVersion 26
18+
targetSdkVersion 27
19+
versionCode 1
20+
versionName "1.0"
21+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
22+
}
23+
buildTypes {
24+
release {
25+
minifyEnabled false
26+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
27+
signingConfig signingConfigs.config
28+
}
29+
debug {
30+
31+
}
32+
}
33+
compileOptions {
34+
sourceCompatibility JavaVersion.VERSION_1_8
35+
targetCompatibility JavaVersion.VERSION_1_8
36+
}
37+
}
38+
39+
dependencies {
40+
implementation fileTree(include: ['*.jar'], dir: 'libs')
41+
implementation 'com.android.support:appcompat-v7:27.1.1'
42+
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
43+
testImplementation 'junit:junit:4.12'
44+
androidTestImplementation 'com.android.support.test:runner:1.0.2'
45+
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
46+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Add project specific ProGuard rules here.
2+
# You can control the set of applied configuration files using the
3+
# proguardFiles setting in build.gradle.
4+
#
5+
# For more details, see
6+
# http://developer.android.com/guide/developing/tools/proguard.html
7+
8+
# If your project uses WebView with JS, uncomment the following
9+
# and specify the fully qualified class name to the JavaScript interface
10+
# class:
11+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12+
# public *;
13+
#}
14+
15+
# Uncomment this to preserve the line number information for
16+
# debugging stack traces.
17+
#-keepattributes SourceFile,LineNumberTable
18+
19+
# If you keep the line number information, uncomment this to
20+
# hide the original source file name.
21+
#-renamesourcefileattribute SourceFile
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package com.vogella.android.testapp;
2+
3+
import android.content.Context;
4+
import android.support.test.InstrumentationRegistry;
5+
import android.support.test.runner.AndroidJUnit4;
6+
7+
import org.junit.Test;
8+
import org.junit.runner.RunWith;
9+
10+
import static org.junit.Assert.*;
11+
12+
/**
13+
* Instrumented test, which will execute on an Android device.
14+
*
15+
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
16+
*/
17+
@RunWith(AndroidJUnit4.class)
18+
public class ExampleInstrumentedTest {
19+
@Test
20+
public void useAppContext() {
21+
// Context of the app under test.
22+
Context appContext = InstrumentationRegistry.getTargetContext();
23+
24+
assertEquals("com.vogella.android.testapp", appContext.getPackageName());
25+
}
26+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.vogella.android.testapp">
4+
5+
<application
6+
android:allowBackup="true"
7+
android:icon="@mipmap/ic_launcher"
8+
android:label="@string/app_name"
9+
android:roundIcon="@mipmap/ic_launcher_round"
10+
android:supportsRtl="true"
11+
android:theme="@style/AppTheme">
12+
<activity android:name=".CreateUserActivity">
13+
</activity>
14+
<activity android:name=".LearnActivity"></activity>
15+
<activity android:name=".UserOverviewActivity">
16+
<intent-filter>
17+
<action android:name="android.intent.action.MAIN" />
18+
19+
<category android:name="android.intent.category.LAUNCHER" />
20+
</intent-filter>
21+
</activity>
22+
</application>
23+
24+
</manifest>
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
package com.vogella.android.testapp;
2+
3+
import android.content.Intent;
4+
import android.os.Bundle;
5+
import android.support.v7.app.AppCompatActivity;
6+
import android.view.View;
7+
import android.widget.EditText;
8+
9+
public class CreateUserActivity extends AppCompatActivity {
10+
11+
private EditText userName;
12+
13+
@Override
14+
protected void onCreate(Bundle savedInstanceState) {
15+
super.onCreate(savedInstanceState);
16+
setContentView(R.layout.activity_create_user);
17+
userName = (EditText) findViewById(R.id.username);
18+
View viewById = findViewById(R.id.female);
19+
viewById.setAlpha(0.4f);
20+
}
21+
22+
// TODO more code
23+
public void onClick(View view) {
24+
finish();
25+
}
26+
27+
@Override
28+
public void finish() {
29+
Intent intent = new Intent();
30+
31+
intent.putExtra(User.USER_NAME, userName.getText().toString());
32+
// TODO replace with real value
33+
intent.putExtra(User.USER_GENDER, true); // hard-code value for testing
34+
35+
setResult(RESULT_OK, intent);
36+
super.finish();
37+
}
38+
}
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
package com.vogella.android.testapp;
2+
3+
import android.os.Bundle;
4+
import android.os.PersistableBundle;
5+
import android.support.annotation.Nullable;
6+
import android.support.v7.app.AppCompatActivity;
7+
import android.view.View;
8+
9+
import java.util.Arrays;
10+
import java.util.List;
11+
12+
public class LearnActivity extends AppCompatActivity implements View.OnClickListener {
13+
14+
@Override
15+
public void onCreate(@Nullable Bundle savedInstanceState) {
16+
super.onCreate(savedInstanceState);
17+
setContentView(R.layout.activity_learn);
18+
List<Integer> buttons = Arrays.asList(R.id.one, R.id.two, R.id.three,
19+
R.id.four, R.id.five, R.id.six, R.id.seven,
20+
R.id.eight, R.id.nine, R.id.zero, R.id.delete);
21+
for(Integer i: buttons) {
22+
View b = findViewById(i);
23+
b.setOnClickListener(this); // calling onClick() method
24+
25+
}
26+
}
27+
28+
public void onClick(View view) {
29+
switch (view.getId()) {
30+
// TODO your logic to evaluate the indivual button
31+
}
32+
}
33+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package com.vogella.android.testapp;
2+
3+
public class User {
4+
5+
public static String USER_NAME = "username";
6+
public static String USER_GENDER = "gender"; // true -> male // false -> female
7+
public static String USER_SKILL_POINTS= "skillPoints";
8+
public String name;
9+
public boolean gender;
10+
public int skillPoints;
11+
12+
public User(String name, boolean gender) {
13+
this.name = name;
14+
this.gender = gender;
15+
this.skillPoints = 0;
16+
}
17+
}
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
package com.vogella.android.testapp;
2+
3+
import android.app.Activity;
4+
import android.content.Intent;
5+
import android.os.Bundle;
6+
import android.support.v7.app.AppCompatActivity;
7+
import android.view.View;
8+
9+
public class UserOverviewActivity extends AppCompatActivity {
10+
11+
public static final int SUB_ACTIVITY_CREATE_USER = 10;
12+
public static final int SUB_ACTIVITY_LEARN = 20;
13+
private User user;
14+
15+
@Override
16+
protected void onCreate(Bundle savedInstanceState) {
17+
super.onCreate(savedInstanceState);
18+
setContentView(R.layout.activity_user_overview);
19+
20+
// TODO check persistence if user exists and load the existing one
21+
boolean userExists=false;
22+
// if no user found, create a new one
23+
if (!userExists){
24+
25+
Intent intent = new Intent(this, CreateUserActivity.class);
26+
startActivityForResult(intent, SUB_ACTIVITY_CREATE_USER);
27+
}
28+
}
29+
30+
31+
32+
33+
// This is the callback for the started sub-activities
34+
@Override
35+
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
36+
if (requestCode == SUB_ACTIVITY_CREATE_USER && resultCode == Activity.RESULT_OK) {
37+
Bundle extras = data.getExtras();
38+
if (extras != null) {
39+
String name = extras.getString(User.USER_NAME);
40+
boolean gender = extras.getBoolean(User.USER_GENDER);
41+
user = new User(name, gender);
42+
updateUserInterface();
43+
}
44+
}
45+
}
46+
47+
public void onClick(View view) {
48+
Intent intent = new Intent(this, LearnActivity.class);
49+
intent.putExtra(User.USER_SKILL_POINTS, user.skillPoints);
50+
startActivityForResult(intent, SUB_ACTIVITY_LEARN);
51+
}
52+
53+
private void updateUserInterface() {
54+
// TODO show the new user values in the UI
55+
}
56+
57+
58+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<vector xmlns:android="http://schemas.android.com/apk/res/android"
2+
xmlns:aapt="http://schemas.android.com/aapt"
3+
android:width="108dp"
4+
android:height="108dp"
5+
android:viewportHeight="108"
6+
android:viewportWidth="108">
7+
<path
8+
android:fillType="evenOdd"
9+
android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
10+
android:strokeColor="#00000000"
11+
android:strokeWidth="1">
12+
<aapt:attr name="android:fillColor">
13+
<gradient
14+
android:endX="78.5885"
15+
android:endY="90.9159"
16+
android:startX="48.7653"
17+
android:startY="61.0927"
18+
android:type="linear">
19+
<item
20+
android:color="#44000000"
21+
android:offset="0.0" />
22+
<item
23+
android:color="#00000000"
24+
android:offset="1.0" />
25+
</gradient>
26+
</aapt:attr>
27+
</path>
28+
<path
29+
android:fillColor="#FFFFFF"
30+
android:fillType="nonZero"
31+
android:pathData="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
32+
android:strokeColor="#00000000"
33+
android:strokeWidth="1" />
34+
</vector>

0 commit comments

Comments
 (0)