From b02db5a7a4e0b029a72393caae23f4b5eece5239 Mon Sep 17 00:00:00 2001 From: Monica Labbao Date: Sat, 13 May 2017 18:33:19 +0800 Subject: [PATCH] android codecamp workshop initial commit: --- .gitignore | 9 + app/.gitignore | 1 + app/build.gradle | 31 ++++ app/proguard-rules.pro | 25 +++ .../ExampleInstrumentedTest.java | 26 +++ app/src/main/AndroidManifest.xml | 28 +++ .../myapplication/FirstFragment.java | 45 +++++ .../myapplication/MainActivity.java | 57 +++++++ .../myapplication/SecondFragment.java | 22 +++ .../myapplication/ShoppingListAdapter.java | 74 ++++++++ .../myapplication/ShoppingListItem.java | 34 ++++ .../myapplication/WelcomeActivity.java | 52 ++++++ app/src/main/res/drawable/user_pic.png | Bin 0 -> 5281 bytes app/src/main/res/layout/activity_main.xml | 33 ++++ app/src/main/res/layout/activity_welcome.xml | 11 ++ app/src/main/res/layout/fragment_first.xml | 27 +++ app/src/main/res/layout/fragment_second.xml | 26 +++ app/src/main/res/layout/item_shopping.xml | 44 +++++ app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 3418 bytes .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 4208 bytes app/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2206 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 2555 bytes app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4842 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 6114 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 7718 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 10056 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 10486 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 14696 bytes app/src/main/res/values/colors.xml | 6 + app/src/main/res/values/strings.xml | 3 + app/src/main/res/values/styles.xml | 11 ++ .../myapplication/ExampleUnitTest.java | 17 ++ build.gradle | 23 +++ gradle.properties | 17 ++ gradlew | 160 ++++++++++++++++++ settings.gradle | 1 + 36 files changed, 783 insertions(+) create mode 100644 .gitignore create mode 100644 app/.gitignore create mode 100644 app/build.gradle create mode 100644 app/proguard-rules.pro create mode 100644 app/src/androidTest/java/com/example/chishingwan/myapplication/ExampleInstrumentedTest.java create mode 100644 app/src/main/AndroidManifest.xml create mode 100644 app/src/main/java/com/example/chishingwan/myapplication/FirstFragment.java create mode 100644 app/src/main/java/com/example/chishingwan/myapplication/MainActivity.java create mode 100644 app/src/main/java/com/example/chishingwan/myapplication/SecondFragment.java create mode 100644 app/src/main/java/com/example/chishingwan/myapplication/ShoppingListAdapter.java create mode 100644 app/src/main/java/com/example/chishingwan/myapplication/ShoppingListItem.java create mode 100644 app/src/main/java/com/example/chishingwan/myapplication/WelcomeActivity.java create mode 100644 app/src/main/res/drawable/user_pic.png create mode 100644 app/src/main/res/layout/activity_main.xml create mode 100644 app/src/main/res/layout/activity_welcome.xml create mode 100644 app/src/main/res/layout/fragment_first.xml create mode 100644 app/src/main/res/layout/fragment_second.xml create mode 100644 app/src/main/res/layout/item_shopping.xml create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 app/src/main/res/values/colors.xml create mode 100644 app/src/main/res/values/strings.xml create mode 100644 app/src/main/res/values/styles.xml create mode 100644 app/src/test/java/com/example/chishingwan/myapplication/ExampleUnitTest.java create mode 100644 build.gradle create mode 100644 gradle.properties create mode 100644 gradlew create mode 100644 settings.gradle diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..39fb081 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +*.iml +.gradle +/local.properties +/.idea/workspace.xml +/.idea/libraries +.DS_Store +/build +/captures +.externalNativeBuild diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..796b96d --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..28c10bd --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,31 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 25 + buildToolsVersion "25.0.2" + defaultConfig { + applicationId "com.example.chishingwan.myapplication" + minSdkVersion 19 + targetSdkVersion 25 + versionCode 1 + versionName "1.0" + testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } +} + +dependencies { + compile fileTree(dir: 'libs', include: ['*.jar']) + androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { + exclude group: 'com.android.support', module: 'support-annotations' + }) + compile 'com.android.support:appcompat-v7:25.3.1' + compile 'com.android.support:recyclerview-v7:25.3.1' + compile 'com.android.support.constraint:constraint-layout:1.0.2' + testCompile 'junit:junit:4.12' +} diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..5d95558 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,25 @@ +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in C:\SDKfiles/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the proguardFiles +# directive in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile diff --git a/app/src/androidTest/java/com/example/chishingwan/myapplication/ExampleInstrumentedTest.java b/app/src/androidTest/java/com/example/chishingwan/myapplication/ExampleInstrumentedTest.java new file mode 100644 index 0000000..8aa82af --- /dev/null +++ b/app/src/androidTest/java/com/example/chishingwan/myapplication/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package com.example.chishingwan.myapplication; + +import android.content.Context; +import android.support.test.InstrumentationRegistry; +import android.support.test.runner.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumentation test, which will execute on an Android device. + * + * @see Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() throws Exception { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getTargetContext(); + + assertEquals("com.example.chishingwan.myapplication", appContext.getPackageName()); + } +} diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..eb9236a --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/java/com/example/chishingwan/myapplication/FirstFragment.java b/app/src/main/java/com/example/chishingwan/myapplication/FirstFragment.java new file mode 100644 index 0000000..3faf8e9 --- /dev/null +++ b/app/src/main/java/com/example/chishingwan/myapplication/FirstFragment.java @@ -0,0 +1,45 @@ +package com.example.chishingwan.myapplication; + +import android.content.Intent; +import android.os.Bundle; +import android.support.annotation.Nullable; +import android.support.v4.app.Fragment; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.Button; +import android.widget.EditText; +import android.widget.Toast; + +/** + * Created by Chi Shing Wan on 5/13/2017. + */ + +public class FirstFragment extends Fragment { + + Button btLogin; + EditText etName; + + @Nullable + @Override + public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { + View view = inflater.inflate(R.layout.fragment_first, container, false); + bindViews(view); + return view; + } + + private void bindViews(View view) { + btLogin = (Button) view.findViewById(R.id.bt_login); + btLogin.setOnClickListener(new View.OnClickListener() { + @Override + public void onClick(View v) { + Intent intent = new Intent(getContext(), WelcomeActivity.class); + String name = etName.getText().toString(); + intent.putExtra("Name", name); + startActivity(intent); + } + }); + + etName = (EditText) view.findViewById(R.id.et_name); + } +} diff --git a/app/src/main/java/com/example/chishingwan/myapplication/MainActivity.java b/app/src/main/java/com/example/chishingwan/myapplication/MainActivity.java new file mode 100644 index 0000000..99dc202 --- /dev/null +++ b/app/src/main/java/com/example/chishingwan/myapplication/MainActivity.java @@ -0,0 +1,57 @@ +package com.example.chishingwan.myapplication; + +import android.support.v4.app.FragmentManager; +import android.support.v4.app.FragmentTransaction; +import android.support.v7.app.AppCompatActivity; +import android.os.Bundle; +import android.view.View; +import android.widget.Button; +import android.widget.FrameLayout; + +public class MainActivity extends AppCompatActivity { + + Button btLogin; + Button btRegister; + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + loadViews(); + loadFragment(); + } + + private void loadViews() { + btLogin = (Button) findViewById(R.id.bt_login); + btRegister = (Button) findViewById(R.id.bt_register); + btLogin.setOnClickListener(new View.OnClickListener() { + @Override + public void onClick(View v) { + loadFragment(); + } + }); + btRegister.setOnClickListener(new View.OnClickListener() { + @Override + public void onClick(View v) { + loadRegister(); + } + }); + } + + private void loadFragment() { + FirstFragment firstFragment = new FirstFragment(); + + FragmentManager fm = getSupportFragmentManager(); + FragmentTransaction transaction = fm.beginTransaction(); + transaction.replace(R.id.container, firstFragment); + transaction.commit(); + } + + private void loadRegister() { + SecondFragment secondFragment = new SecondFragment(); + FragmentManager fm = getSupportFragmentManager(); + FragmentTransaction transaction = fm.beginTransaction(); + transaction.replace(R.id.container, secondFragment); + transaction.commit(); + } +} diff --git a/app/src/main/java/com/example/chishingwan/myapplication/SecondFragment.java b/app/src/main/java/com/example/chishingwan/myapplication/SecondFragment.java new file mode 100644 index 0000000..4de5b04 --- /dev/null +++ b/app/src/main/java/com/example/chishingwan/myapplication/SecondFragment.java @@ -0,0 +1,22 @@ +package com.example.chishingwan.myapplication; + +import android.os.Bundle; +import android.support.annotation.Nullable; +import android.support.v4.app.Fragment; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; + +/** + * Created by Chi Shing Wan on 5/13/2017. + */ + +public class SecondFragment extends Fragment { + @Nullable + @Override + public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { + View view = inflater.inflate(R.layout.fragment_second, container, false); + //TODO: Proceed to WelcomeActivity upon registering. Display + return view; + } +} diff --git a/app/src/main/java/com/example/chishingwan/myapplication/ShoppingListAdapter.java b/app/src/main/java/com/example/chishingwan/myapplication/ShoppingListAdapter.java new file mode 100644 index 0000000..c154ea1 --- /dev/null +++ b/app/src/main/java/com/example/chishingwan/myapplication/ShoppingListAdapter.java @@ -0,0 +1,74 @@ +package com.example.chishingwan.myapplication; + +import android.support.v7.widget.RecyclerView; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.TextView; + +import java.util.ArrayList; + +/** + * Created by Chi Shing Wan on 5/13/2017. + */ + +public class ShoppingListAdapter extends RecyclerView.Adapter { + + ArrayList list; + + public ShoppingListAdapter() { + list = new ArrayList<>(); + populateList(); + } + + private void populateList() { + ShoppingListItem item1 = new ShoppingListItem(); + item1.setName("Raisins"); + item1.setQty(1); + item1.setPrice(45.00); + list.add(item1); + + ShoppingListItem item2 = new ShoppingListItem(); + item2.setName("Flour"); + item2.setQty(2); + item2.setPrice(37.00); + list.add(item2); + + ShoppingListItem item3 = new ShoppingListItem(); + item3.setName("The Elder Scrolls V Skyrim"); + item3.setQty(1); + item3.setPrice(999.00); + list.add(item3); + } + + @Override + public ShoppingListViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { + View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_shopping, parent, false); + return new ShoppingListViewHolder(view); + } + + @Override + public void onBindViewHolder(ShoppingListViewHolder holder, int position) { + holder.itemName.setText(list.get(position).getName()); + holder.itemPrice.setText("Php " + list.get(position).getPrice()); + holder.itemQty.setText("" + list.get(position).getQty()); + } + + @Override + public int getItemCount() { + return list.size(); + } + + protected class ShoppingListViewHolder extends RecyclerView.ViewHolder { + TextView itemName; + TextView itemQty; + TextView itemPrice; + public ShoppingListViewHolder(View itemView) { + super(itemView); + itemName = (TextView) itemView.findViewById(R.id.item_name); + itemQty = (TextView) itemView.findViewById(R.id.item_qty); + itemPrice = (TextView) itemView.findViewById(R.id.item_price); + } + } + +} diff --git a/app/src/main/java/com/example/chishingwan/myapplication/ShoppingListItem.java b/app/src/main/java/com/example/chishingwan/myapplication/ShoppingListItem.java new file mode 100644 index 0000000..3a8fe7d --- /dev/null +++ b/app/src/main/java/com/example/chishingwan/myapplication/ShoppingListItem.java @@ -0,0 +1,34 @@ +package com.example.chishingwan.myapplication; + +/** + * Created by Chi Shing Wan on 5/13/2017. + */ +public class ShoppingListItem { + private String name; + private double price; + private int qty; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public double getPrice() { + return price; + } + + public void setPrice(double price) { + this.price = price; + } + + public int getQty() { + return qty; + } + + public void setQty(int qty) { + this.qty = qty; + } +} diff --git a/app/src/main/java/com/example/chishingwan/myapplication/WelcomeActivity.java b/app/src/main/java/com/example/chishingwan/myapplication/WelcomeActivity.java new file mode 100644 index 0000000..8cfbc7a --- /dev/null +++ b/app/src/main/java/com/example/chishingwan/myapplication/WelcomeActivity.java @@ -0,0 +1,52 @@ +package com.example.chishingwan.myapplication; + +import android.content.Intent; +import android.os.Bundle; +import android.support.annotation.Nullable; +import android.support.v7.app.AppCompatActivity; +import android.support.v7.widget.LinearLayoutManager; +import android.support.v7.widget.RecyclerView; +import android.view.MenuItem; + +/** + * Created by Chi Shing Wan on 5/13/2017. + */ + +public class WelcomeActivity extends AppCompatActivity { + + RecyclerView rvShoppingList; + + @Override + protected void onCreate(@Nullable Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_welcome); +// getSupportActionBar().setDisplayHomeAsUpEnabled(true); + henlo(); + bindViews(); + } + + private void bindViews() { + rvShoppingList = (RecyclerView) findViewById(R.id.rv_shoppinglist); + rvShoppingList.setLayoutManager(new LinearLayoutManager(this)); + rvShoppingList.setAdapter(new ShoppingListAdapter()); + } + + private void henlo() { + Intent intent = getIntent(); + String name = intent.getStringExtra("Name"); + getSupportActionBar().setTitle("Hello " + name); + } + +/* @Override + public boolean onOptionsItemSelected(MenuItem item) { + if (item.getItemId() == android.R.id.home) { + onBackPressed(); + } + return super.onOptionsItemSelected(item); + }*/ + +/* @Override + public void onBackPressed() { + super.onBackPressed(); + }*/ +} diff --git a/app/src/main/res/drawable/user_pic.png b/app/src/main/res/drawable/user_pic.png new file mode 100644 index 0000000000000000000000000000000000000000..75ac2b5f60f217ce43efe4e60a604ed1ad85ea60 GIT binary patch literal 5281 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 nXge~gR?^nu&%kpCS>XQxGOSOwn{* + + + +