mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2025-12-15 18:28:47 +00:00
commit
da14953daf
@ -1,15 +1,19 @@
|
||||
package com.example.listify;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.AdapterView;
|
||||
import android.widget.ArrayAdapter;
|
||||
import android.widget.Button;
|
||||
import android.widget.EditText;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.ListView;
|
||||
import android.widget.TextView;
|
||||
import java.util.ArrayList;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
@ -17,40 +21,64 @@ import androidx.appcompat.app.AppCompatActivity;
|
||||
|
||||
public class List extends AppCompatActivity {
|
||||
ListView listView;
|
||||
String listName = "Sample List";
|
||||
String[] pNames = {"Half-gallon organic whole milk"};
|
||||
String[] pStores = {"Kroger"};
|
||||
String[] pPrices = {"$5.00"};
|
||||
int[] pImages = {R.drawable.milk};
|
||||
MyAdapter myAdapter;
|
||||
|
||||
//List(String name) {
|
||||
// listName = name;
|
||||
//}
|
||||
Button incrQuan;
|
||||
Button decrQuan;
|
||||
Button removeItem;
|
||||
|
||||
ArrayList<String> pNames = new ArrayList<>(); //String[] pNames = {"Half-gallon organic whole milk"};
|
||||
ArrayList<String> pStores = new ArrayList<>(); //String[] pStores = {"Kroger"};
|
||||
ArrayList<String> pPrices = new ArrayList<>(); //String[] pPrices = {"$5.00"};
|
||||
ArrayList<String> pQuantity = new ArrayList<>(); //String[] pQuantity = {"1"};
|
||||
ArrayList<Integer> pImages = new ArrayList<>(); //int[] pImages = {R.drawable.milk};
|
||||
|
||||
@Override
|
||||
protected void onCreate(@Nullable Bundle savedInstanceState) {
|
||||
pNames.add("Half-gallon organic whole milk");
|
||||
pStores.add("Kroger");
|
||||
pPrices.add("$5.00");
|
||||
pQuantity.add("1");
|
||||
pImages.add(R.drawable.milk);
|
||||
|
||||
pNames.add("5-bunch medium bananas");
|
||||
pStores.add("Kroger");
|
||||
pPrices.add("$3.00");
|
||||
pQuantity.add("1");
|
||||
pImages.add(R.drawable.bananas);
|
||||
|
||||
pNames.add("JIF 40-oz creamy peanut butter");
|
||||
pStores.add("Kroger");
|
||||
pPrices.add("$7.00");
|
||||
pQuantity.add("1");
|
||||
pImages.add(R.drawable.peanutbutter);
|
||||
|
||||
int currSize = pNames.size();
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_list);
|
||||
|
||||
listView = findViewById(R.id.listView);
|
||||
myAdapter = new MyAdapter(this, pNames, pStores, pPrices, pQuantity, pImages);
|
||||
|
||||
MyAdapter myAdapter = new MyAdapter(this, pNames, pStores, pPrices, pImages);
|
||||
listView.setAdapter(myAdapter);
|
||||
}
|
||||
|
||||
class MyAdapter extends ArrayAdapter<String> {
|
||||
Context context;
|
||||
String[] pNames;
|
||||
String[] pStores;
|
||||
String[] pPrices;
|
||||
int[] pImages;
|
||||
ArrayList<String> pNames; //String[] pNames;
|
||||
ArrayList<String> pStores; //String[] pStores;
|
||||
ArrayList<String> pPrices; //String[] pPrices;
|
||||
ArrayList<String> pQuantity; //String[] pQuantity;
|
||||
ArrayList<Integer> pImages; //int[] pImages;
|
||||
|
||||
MyAdapter (Context c, String[] names, String[] stores, String[] prices, int[] images) {
|
||||
MyAdapter (Context c, ArrayList<String> names, ArrayList<String> stores, ArrayList<String> prices, ArrayList<String> quantity, ArrayList<Integer> images) {
|
||||
super(c, R.layout.listproduct, R.id.productView, names);
|
||||
context = c;
|
||||
pNames = names;
|
||||
pStores = stores;
|
||||
pPrices = prices;
|
||||
pQuantity = quantity;
|
||||
pImages = images;
|
||||
}
|
||||
|
||||
@ -60,15 +88,65 @@ public class List extends AppCompatActivity {
|
||||
LayoutInflater layoutInflater = (LayoutInflater) getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
||||
View listproduct = layoutInflater.inflate(R.layout.listproduct, parent,false);
|
||||
|
||||
ImageView image = listproduct.findViewById(R.id.imageView);
|
||||
decrQuan = (Button) listproduct.findViewById(R.id.buttonDecr);
|
||||
incrQuan = (Button) listproduct.findViewById(R.id.buttonIncr);
|
||||
removeItem = (Button) listproduct.findViewById(R.id.buttonDel);
|
||||
|
||||
decrQuan.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
int q = Integer.parseInt(pQuantity.get(position)) - 1;
|
||||
pQuantity.set(position, Integer.toString(q));
|
||||
listView.setAdapter(myAdapter);
|
||||
}
|
||||
});
|
||||
if(Integer.parseInt(pQuantity.get(position)) <= 1) {
|
||||
decrQuan.setEnabled(false);
|
||||
}
|
||||
if(Integer.parseInt(pQuantity.get(position)) < 10) {
|
||||
incrQuan.setEnabled(true);
|
||||
}
|
||||
|
||||
incrQuan.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
int q = Integer.parseInt(pQuantity.get(position)) + 1;
|
||||
pQuantity.set(position, Integer.toString(q));
|
||||
listView.setAdapter(myAdapter);
|
||||
}
|
||||
});
|
||||
if(Integer.parseInt(pQuantity.get(position)) > 1) {
|
||||
decrQuan.setEnabled(true);
|
||||
}
|
||||
if(Integer.parseInt(pQuantity.get(position)) >= 10) {
|
||||
incrQuan.setEnabled(false);
|
||||
}
|
||||
|
||||
removeItem.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
pNames.remove(position);
|
||||
pStores.remove(position);
|
||||
pPrices.remove(position);
|
||||
pQuantity.remove(position);
|
||||
pImages.remove(position);
|
||||
listView.setAdapter(myAdapter);
|
||||
}
|
||||
});
|
||||
|
||||
TextView name = listproduct.findViewById(R.id.productView);
|
||||
TextView store = listproduct.findViewById(R.id.storeView);
|
||||
TextView price = listproduct.findViewById(R.id.priceView);
|
||||
TextView quantity = listproduct.findViewById(R.id.quantityView);
|
||||
ImageView image = listproduct.findViewById(R.id.imageView);
|
||||
|
||||
image.setImageResource(pImages[position]);
|
||||
name.setText(pNames[position]);
|
||||
store.setText(pStores[position]);
|
||||
price.setText(pPrices[position]);
|
||||
if(!pNames.isEmpty()) {
|
||||
name.setText(pNames.get(position));
|
||||
store.setText(pStores.get(position));
|
||||
price.setText(pPrices.get(position));
|
||||
quantity.setText(pQuantity.get(position));
|
||||
image.setImageResource(pImages.get(position));
|
||||
}
|
||||
|
||||
return listproduct;
|
||||
}
|
||||
|
||||
BIN
Listify/app/src/main/res/drawable/bananas.png
Normal file
BIN
Listify/app/src/main/res/drawable/bananas.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 24 KiB |
BIN
Listify/app/src/main/res/drawable/peanutbutter.png
Normal file
BIN
Listify/app/src/main/res/drawable/peanutbutter.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 127 KiB |
@ -4,7 +4,8 @@
|
||||
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">
|
||||
android:layout_height="match_parent"
|
||||
android:descendantFocusability="blocksDescendants">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout"
|
||||
@ -15,22 +16,22 @@
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<Button
|
||||
android:id="@+id/buttonIncr"
|
||||
android:id="@+id/buttonDecr"
|
||||
android:layout_width="30dp"
|
||||
android:layout_height="30dp"
|
||||
android:layout_marginStart="25dp"
|
||||
android:text="+"
|
||||
android:text="-"
|
||||
android:textSize="10dp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@+id/imageView"
|
||||
app:layout_constraintTop_toBottomOf="@+id/storeView" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/buttonDecr"
|
||||
android:id="@+id/buttonIncr"
|
||||
android:layout_width="30dp"
|
||||
android:layout_height="30dp"
|
||||
android:layout_marginStart="75dp"
|
||||
android:text="-"
|
||||
android:text="+"
|
||||
android:textSize="10dp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@+id/imageView"
|
||||
@ -93,13 +94,13 @@
|
||||
app:layout_constraintTop_toBottomOf="@+id/storeView" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/textViewQuantity"
|
||||
android:id="@+id/quantityView"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="1"
|
||||
android:text="q"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@+id/buttonDecr"
|
||||
app:layout_constraintStart_toEndOf="@+id/buttonIncr"
|
||||
app:layout_constraintEnd_toStartOf="@+id/buttonIncr"
|
||||
app:layout_constraintStart_toEndOf="@+id/buttonDecr"
|
||||
app:layout_constraintTop_toBottomOf="@+id/storeView" />
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user