Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
likorn
/
Lavina
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
65bbea72
authored
May 14, 2018
by
Paktalin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
query results activity created
parent
91b25ff1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
13 deletions
app/src/main/java/com/example/paktalin/lavina/OrderActivity.java
app/src/main/java/com/example/paktalin/lavina/QueryResultsActivity.java
app/src/main/java/com/example/paktalin/lavina/adapters/ExpandableListAdapter.java
app/src/main/res/layout/activity_order.xml
app/src/main/java/com/example/paktalin/lavina/OrderActivity.java
View file @
65bbea72
package
com
.
example
.
paktalin
.
lavina
;
import
android.content.Intent
;
import
android.graphics.Bitmap
;
import
android.graphics.BitmapFactory
;
import
android.os.Bundle
;
import
android.support.v7.app.AppCompatActivity
;
import
android.view.View
;
import
android.widget.ExpandableListView
;
import
com.example.paktalin.lavina.adapters.ExpandableListAdapter
;
...
...
@@ -23,7 +25,7 @@ public class OrderActivity extends AppCompatActivity {
ExpandableListView
expListView
;
List
<
String
>
listDataHeader
;
HashMap
<
String
,
List
<
String
>>
listDataChild
;
Bitmap
[]
colorImages
;
Bitmap
[]
colorImages
,
countriesImages
;
@Override
protected
void
onCreate
(
Bundle
savedInstanceState
)
{
...
...
@@ -33,13 +35,35 @@ public class OrderActivity extends AppCompatActivity {
expListView
=
findViewById
(
R
.
id
.
expandable_list_view
);
prepareListData
();
prepareImages
();
prepareColorImages
();
prepareCountriesImages
();
listAdapter
=
new
ExpandableListAdapter
(
this
,
listDataHeader
,
listDataChild
,
colorImages
);
listAdapter
=
new
ExpandableListAdapter
(
this
,
listDataHeader
,
listDataChild
,
colorImages
,
countriesImages
);
expListView
.
setAdapter
(
listAdapter
);
(
findViewById
(
R
.
id
.
button_proceed
)).
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
v
)
{
Intent
intent
=
new
Intent
(
OrderActivity
.
this
,
QueryResultsActivity
.
class
);
startActivity
(
intent
);
}
});
}
private
void
prepareCountriesImages
()
{
countriesImages
=
new
Bitmap
[
9
];
countriesImages
[
0
]
=
BitmapFactory
.
decodeResource
(
getResources
(),
R
.
drawable
.
color1
);
countriesImages
[
1
]
=
BitmapFactory
.
decodeResource
(
getResources
(),
R
.
drawable
.
color2
);
countriesImages
[
2
]
=
BitmapFactory
.
decodeResource
(
getResources
(),
R
.
drawable
.
color3
);
countriesImages
[
3
]
=
BitmapFactory
.
decodeResource
(
getResources
(),
R
.
drawable
.
color4
);
countriesImages
[
4
]
=
BitmapFactory
.
decodeResource
(
getResources
(),
R
.
drawable
.
color5
);
countriesImages
[
5
]
=
BitmapFactory
.
decodeResource
(
getResources
(),
R
.
drawable
.
color6
);
countriesImages
[
6
]
=
BitmapFactory
.
decodeResource
(
getResources
(),
R
.
drawable
.
color7
);
countriesImages
[
7
]
=
BitmapFactory
.
decodeResource
(
getResources
(),
R
.
drawable
.
color8
);
countriesImages
[
8
]
=
BitmapFactory
.
decodeResource
(
getResources
(),
R
.
drawable
.
color9
);
}
private
void
prepareImages
()
{
private
void
prepare
Color
Images
()
{
colorImages
=
new
Bitmap
[
9
];
colorImages
[
0
]
=
BitmapFactory
.
decodeResource
(
getResources
(),
R
.
drawable
.
color1
);
colorImages
[
1
]
=
BitmapFactory
.
decodeResource
(
getResources
(),
R
.
drawable
.
color2
);
...
...
@@ -53,7 +77,7 @@ public class OrderActivity extends AppCompatActivity {
}
private
void
prepareHeadersData
()
{
String
[]
groups
=
new
String
[]
{
"COLOR"
,
"BRAND"
,
"PRICE"
,
"YEAR"
,
"STRENGTH"
,
"
COUNTRY
"
,
String
[]
groups
=
new
String
[]
{
"COLOR"
,
"BRAND"
,
"PRICE"
,
"YEAR"
,
"STRENGTH"
,
"
REGION
"
,
"TITLE"
,
"TYPE"
,
"VARIETY"
};
listDataHeader
=
new
ArrayList
<>();
listDataHeader
.
addAll
(
Arrays
.
asList
(
groups
));
...
...
@@ -77,7 +101,10 @@ public class OrderActivity extends AppCompatActivity {
"2008"
,
"2009"
,
"2010"
,
"2011"
,
"2012"
,
"2013"
,
"2014"
,
"2015"
,
"2016"
,
"2017"
,
"2018"
));
List
<
String
>
strengths
=
new
ArrayList
<>();
List
<
String
>
countries
=
new
ArrayList
<>();
List
<
String
>
regions
=
new
ArrayList
<>();
regions
.
addAll
(
Arrays
.
asList
(
"Abruzzo"
,
"Apulia"
,
"Basilicata"
,
"Calabria"
,
"Campania"
,
"Emilia-Romagna"
,
"Friuli-Venezia Giulia"
));
List
<
String
>
titles
=
new
ArrayList
<>();
List
<
String
>
types
=
new
ArrayList
<>();
...
...
@@ -91,7 +118,7 @@ public class OrderActivity extends AppCompatActivity {
listDataChild
.
put
(
listDataHeader
.
get
(
2
),
prices
);
listDataChild
.
put
(
listDataHeader
.
get
(
3
),
years
);
listDataChild
.
put
(
listDataHeader
.
get
(
4
),
strengths
);
listDataChild
.
put
(
listDataHeader
.
get
(
5
),
countrie
s
);
listDataChild
.
put
(
listDataHeader
.
get
(
5
),
region
s
);
listDataChild
.
put
(
listDataHeader
.
get
(
6
),
titles
);
listDataChild
.
put
(
listDataHeader
.
get
(
7
),
types
);
listDataChild
.
put
(
listDataHeader
.
get
(
8
),
varieties
);
...
...
app/src/main/java/com/example/paktalin/lavina/QueryResultsActivity.java
0 → 100644
View file @
65bbea72
package
com
.
example
.
paktalin
.
lavina
;
import
android.support.v7.app.AppCompatActivity
;
/**
* Created by Paktalin on 14/05/2018.
*/
public
class
QueryResultsActivity
extends
AppCompatActivity
{
}
app/src/main/java/com/example/paktalin/lavina/adapters/ExpandableListAdapter.java
View file @
65bbea72
...
...
@@ -3,7 +3,6 @@ package com.example.paktalin.lavina.adapters;
import
android.content.Context
;
import
android.graphics.Bitmap
;
import
android.graphics.Typeface
;
import
android.util.Log
;
import
android.view.LayoutInflater
;
import
android.view.View
;
import
android.view.ViewGroup
;
...
...
@@ -26,14 +25,15 @@ public class ExpandableListAdapter extends BaseExpandableListAdapter {
private
List
<
String
>
_listDataHeader
;
// header titles
// child data in format of header title, child title
private
HashMap
<
String
,
List
<
String
>>
_listDataChild
;
Bitmap
[]
color
Images
;
private
Bitmap
[]
colorImages
,
countries
Images
;
public
ExpandableListAdapter
(
Context
context
,
List
<
String
>
listDataHeader
,
HashMap
<
String
,
List
<
String
>>
listChildData
,
Bitmap
[]
colorImages
)
{
HashMap
<
String
,
List
<
String
>>
listChildData
,
Bitmap
[]
colorImages
,
Bitmap
[]
countriesImages
)
{
this
.
_context
=
context
;
this
.
_listDataHeader
=
listDataHeader
;
this
.
_listDataChild
=
listChildData
;
this
.
colorImages
=
colorImages
;
this
.
countriesImages
=
countriesImages
;
}
@Override
...
...
@@ -62,11 +62,8 @@ public class ExpandableListAdapter extends BaseExpandableListAdapter {
String
group
=
(
String
)
getGroup
(
groupPosition
);
Log
.
d
(
"TEST"
,
"current group"
+
group
);
ImageView
imageView
=
convertView
.
findViewById
(
R
.
id
.
image_item
);
if
(
group
.
equals
(
"COLOR"
))
{
Log
.
d
(
"TEST"
,
"wohoo"
);
imageView
.
setImageBitmap
(
colorImages
[
childPosition
]);
}
else
{
imageView
.
setImageResource
(
android
.
R
.
color
.
transparent
);
...
...
app/src/main/res/layout/activity_order.xml
View file @
65bbea72
...
...
@@ -55,6 +55,7 @@
android:textColor=
"@android:color/white"
/>
<Button
android:id=
"@+id/button_proceed"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:text=
"Proceed"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment