Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
hds
flexin
android-app
Commits
68de0c7e
Commit
68de0c7e
authored
Nov 05, 2017
by
Nastuzzi Samy
Browse files
Keyboard preparation
Adapt to keyboard mode
parent
eeb76af3
Changes
6
Hide whitespace changes
Inline
Side-by-side
app/src/main/java/fr/utc/simde/payutc/ArticleCategoryActivity.java
View file @
68de0c7e
package
fr.utc.simde.payutc
;
import
android.content.DialogInterface
;
import
android.content.Intent
;
import
android.os.Bundle
;
import
android.os.Vibrator
;
import
android.support.v7.app.AlertDialog
;
import
android.util.Log
;
import
android.view.LayoutInflater
;
import
android.view.View
;
import
android.widget.AdapterView
;
import
android.widget.Button
;
import
android.widget.CheckBox
;
import
android.widget.ImageButton
;
import
android.widget.LinearLayout
;
import
android.widget.ListView
;
import
android.widget.RadioButton
;
import
android.widget.Switch
;
import
android.widget.TabHost
;
import
android.widget.TextView
;
import
android.widget.Toast
;
import
com.fasterxml.jackson.databind.JsonNode
;
import
com.fasterxml.jackson.databind.ObjectMapper
;
import
com.fasterxml.jackson.databind.node.ArrayNode
;
import
com.fasterxml.jackson.databind.node.ObjectNode
;
import
java.util.ArrayList
;
import
java.util.HashMap
;
import
java.util.List
;
import
fr.utc.simde.payutc.articles.GroupAdapter
;
import
fr.utc.simde.payutc.articles.GroupFragment
;
import
fr.utc.simde.payutc.articles.ListAdapater
;
import
fr.utc.simde.payutc.tools.HTTPRequest
;
/**
* Created by Samy on 27/10/2017.
*/
public
class
ArticleCategoryActivity
extends
Base
Activity
{
public
class
ArticleCategoryActivity
extends
ArticleGroup
Activity
{
private
static
final
String
LOG_TAG
=
"_ArticleCategoryActivit"
;
private
ImageButton
paramButton
;
private
ImageButton
deleteButton
;
private
TabHost
tabHost
;
private
Panier
panier
;
private
List
<
GroupFragment
>
groupFragmentList
;
private
int
nbrCategories
;
public
class
Panier
{
private
int
totalPrice
;
private
List
<
Integer
>
articleList
=
new
ArrayList
<
Integer
>();
private
TextView
textView
;
public
Panier
(
TextView
textView
)
{
this
.
totalPrice
=
0
;
this
.
textView
=
textView
;
setText
();
}
public
void
setText
()
{
if
(
this
.
articleList
.
size
()
==
0
)
this
.
textView
.
setText
(
"Panier vide"
);
else
this
.
textView
.
setText
(
"Total: "
+
String
.
format
(
"%.2f"
,
new
Float
(
totalPrice
)
/
100.00f
)
+
"€"
);
}
public
List
<
Integer
>
getArticleList
()
{
return
this
.
articleList
;
}
public
void
addArticle
(
final
int
id
,
final
int
price
)
{
this
.
articleList
.
add
(
id
);
this
.
totalPrice
+=
price
;
setText
();
}
public
void
clear
()
{
this
.
articleList
.
clear
();
this
.
totalPrice
=
0
;
setText
();
}
public
Boolean
isEmpty
()
{
return
this
.
articleList
.
isEmpty
();
}
}
@Override
public
void
onCreate
(
Bundle
savedInstanceState
)
{
super
.
onCreate
(
savedInstanceState
);
setContentView
(
R
.
layout
.
activity_article_category
);
TextView
textView
=
findViewById
(
R
.
id
.
text_price
);
this
.
panier
=
new
Panier
(
textView
);
this
.
paramButton
=
findViewById
(
R
.
id
.
image_param
);
this
.
deleteButton
=
findViewById
(
R
.
id
.
image_delete
);
this
.
tabHost
=
findViewById
(
R
.
id
.
tab_categories
);
this
.
tabHost
.
setup
();
this
.
groupFragmentList
=
new
ArrayList
<
GroupFragment
>();
this
.
nbrCategories
=
0
;
try
{
createCategories
(
new
ObjectMapper
().
readTree
(
getIntent
().
getExtras
().
getString
(
"categoryList"
)),
new
ObjectMapper
().
readTree
(
getIntent
().
getExtras
().
getString
(
"articleList"
)));
}
catch
(
Exception
e
)
{
Log
.
e
(
LOG_TAG
,
"error: "
+
e
.
getMessage
());
dialog
.
errorDialog
(
this
,
getResources
().
getString
(
R
.
string
.
information_collection
),
getResources
().
getString
(
R
.
string
.
error_view
),
new
DialogInterface
.
OnClickListener
()
{
@Override
public
void
onClick
(
DialogInterface
dialogInterface
,
int
id
)
{
finish
();
}
});
}
if
(
nbrCategories
==
0
)
{
dialog
.
errorDialog
(
this
,
getResources
().
getString
(
R
.
string
.
information_collection
),
getResources
().
getString
(
R
.
string
.
article_error_0_categorie_not_0
),
new
DialogInterface
.
OnClickListener
()
{
@Override
public
void
onClick
(
DialogInterface
dialogInterface
,
int
id
)
{
finish
();
}
});
}
this
.
paramButton
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
view
)
{
if
(
config
.
getFoundationId
()
==
-
1
)
{
final
View
popupView
=
LayoutInflater
.
from
(
ArticleCategoryActivity
.
this
).
inflate
(
R
.
layout
.
dialog_config
,
null
,
false
);
final
RadioButton
radioKeyboard
=
popupView
.
findViewById
(
R
.
id
.
radio_keyboard
);
final
RadioButton
radioCategory
=
popupView
.
findViewById
(
R
.
id
.
radio_category
);
final
RadioButton
radioGrid
=
popupView
.
findViewById
(
R
.
id
.
radio_grid
);
final
RadioButton
radioList
=
popupView
.
findViewById
(
R
.
id
.
radio_list
);
final
Switch
switchCotisant
=
popupView
.
findViewById
(
R
.
id
.
swtich_cotisant
);
final
Switch
swtich18
=
popupView
.
findViewById
(
R
.
id
.
swtich_18
);
final
Button
configButton
=
popupView
.
findViewById
(
R
.
id
.
button_config
);
if
(
config
.
getInKeyboard
())
radioKeyboard
.
setChecked
(
true
);
else
radioCategory
.
setChecked
(
true
);
if
(
config
.
getInGrid
())
radioGrid
.
setChecked
(
true
);
else
radioList
.
setChecked
(
true
);
switchCotisant
.
setChecked
(
config
.
getPrintCotisant
());
swtich18
.
setChecked
(
config
.
getPrint18
());
configButton
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
final
View
view
)
{
configApp
();
}
});
final
AlertDialog
.
Builder
alertDialogBuilder
=
new
AlertDialog
.
Builder
(
ArticleCategoryActivity
.
this
);
alertDialogBuilder
.
setTitle
(
R
.
string
.
configuration
)
.
setView
(
popupView
)
.
setCancelable
(
false
)
.
setPositiveButton
(
R
.
string
.
reload
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialogInterface
,
int
id
)
{
config
.
setInKeyboard
(
radioKeyboard
.
isChecked
());
config
.
setInGrid
(
radioGrid
.
isChecked
());
config
.
setPrintCotisant
(
switchCotisant
.
isChecked
());
config
.
setPrint18
(
swtich18
.
isChecked
());
startCategoryArticlesActivity
(
ArticleCategoryActivity
.
this
);
}
})
.
setNegativeButton
(
R
.
string
.
cancel
,
null
);
dialog
.
createDialog
(
alertDialogBuilder
);
}
else
{
final
View
popupView
=
LayoutInflater
.
from
(
ArticleCategoryActivity
.
this
).
inflate
(
R
.
layout
.
dialog_config_restore
,
null
,
false
);
final
Button
configButton
=
popupView
.
findViewById
(
R
.
id
.
button_config
);
configButton
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
view
)
{
config
.
setFoundation
(-
1
,
""
);
config
.
setGroupList
(
new
ObjectMapper
().
createObjectNode
());
config
.
setCanCancel
(
true
);
startMainActivity
(
ArticleCategoryActivity
.
this
);
}
});
final
AlertDialog
.
Builder
alertDialogBuilder
=
new
AlertDialog
.
Builder
(
ArticleCategoryActivity
.
this
);
alertDialogBuilder
.
setTitle
(
R
.
string
.
configuration
)
.
setView
(
popupView
)
.
setCancelable
(
false
)
.
setPositiveButton
(
R
.
string
.
reload
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialogInterface
,
int
id
)
{
startCategoryArticlesActivity
(
ArticleCategoryActivity
.
this
);
}
})
.
setNegativeButton
(
R
.
string
.
cancel
,
null
);
dialog
.
createDialog
(
alertDialogBuilder
);
}
}
});
this
.
deleteButton
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
view
)
{
clearPanier
();
}
});
}
@Override
public
void
onRestart
()
{
super
.
onRestart
();
startCategoryArticlesActivity
(
ArticleCategoryActivity
.
this
);
}
@Override
protected
void
onIdentification
(
final
String
badgeId
)
{
if
(
dialog
.
isShowing
())
return
;
if
(
this
.
panier
.
isEmpty
())
startBuyerInfoActivity
(
ArticleCategoryActivity
.
this
,
badgeId
);
else
pay
(
badgeId
);
}
protected
void
configApp
()
{
dialog
.
startLoading
(
ArticleCategoryActivity
.
this
,
getResources
().
getString
(
R
.
string
.
information_collection
),
getResources
().
getString
(
R
.
string
.
category_list_collecting
));
new
Thread
()
{
@Override
public
void
run
()
{
try
{
nemopaySession
.
getCategories
();
Thread
.
sleep
(
100
);
final
HTTPRequest
request
=
nemopaySession
.
getRequest
();
final
JsonNode
categoryList
=
request
.
getJSONResponse
();
if
(!
categoryList
.
isArray
())
throw
new
Exception
(
"Malformed JSON"
);
if
(
categoryList
.
size
()
==
0
)
{
runOnUiThread
(
new
Runnable
()
{
@Override
public
void
run
()
{
dialog
.
stopLoading
();
dialog
.
errorDialog
(
ArticleCategoryActivity
.
this
,
getString
(
R
.
string
.
information_collection
),
nemopaySession
.
getFoundationName
()
+
" "
+
getString
(
R
.
string
.
category_error_0
));
}
});
return
;
}
for
(
final
JsonNode
category
:
categoryList
)
{
if
(!
category
.
has
(
"id"
)
||
!
category
.
has
(
"name"
)
||
!
category
.
has
(
"fundation_id"
)
||
category
.
get
(
"fundation_id"
).
intValue
()
!=
nemopaySession
.
getFoundationId
())
throw
new
Exception
(
"Unexpected JSON"
);
}
}
catch
(
final
Exception
e
)
{
Log
.
e
(
LOG_TAG
,
"error: "
+
e
.
getMessage
());
runOnUiThread
(
new
Runnable
()
{
@Override
public
void
run
()
{
fatal
(
ArticleCategoryActivity
.
this
,
getString
(
R
.
string
.
category_list_collecting
),
e
.
getMessage
());
}
});
}
runOnUiThread
(
new
Runnable
()
{
@Override
public
void
run
()
{
dialog
.
stopLoading
();
LayoutInflater
layoutInflater
=
LayoutInflater
.
from
(
ArticleCategoryActivity
.
this
);
View
popupView
=
layoutInflater
.
inflate
(
R
.
layout
.
dialog_group
,
null
);
ListView
listView
=
popupView
.
findViewById
(
R
.
id
.
list_groups
);
final
Switch
canCancelSwitch
=
popupView
.
findViewById
(
R
.
id
.
swtich_cancel
);
canCancelSwitch
.
setChecked
(
config
.
getCanCancel
());
JsonNode
categoryList
;
GroupAdapter
groupAdapter
=
null
;
try
{
categoryList
=
nemopaySession
.
getRequest
().
getJSONResponse
();
groupAdapter
=
new
GroupAdapter
(
ArticleCategoryActivity
.
this
,
categoryList
);
listView
.
setAdapter
(
groupAdapter
);
}
catch
(
Exception
e
)
{
Log
.
e
(
LOG_TAG
,
"error: "
+
e
.
getMessage
());
fatal
(
ArticleCategoryActivity
.
this
,
getString
(
R
.
string
.
category_list_collecting
),
e
.
getMessage
());
}
final
AlertDialog
.
Builder
alertDialogBuilder
=
new
AlertDialog
.
Builder
(
ArticleCategoryActivity
.
this
);
final
GroupAdapter
finalGroupAdapter
=
groupAdapter
;
alertDialogBuilder
.
setTitle
(
R
.
string
.
configuration
)
.
setView
(
popupView
)
.
setCancelable
(
false
)
.
setPositiveButton
(
R
.
string
.
applicate
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialogInterface
,
int
id
)
{
config
.
setCanCancel
(
canCancelSwitch
.
isChecked
());
if
(
finalGroupAdapter
.
getList
().
size
()
==
0
)
{
Toast
.
makeText
(
ArticleCategoryActivity
.
this
,
getString
(
R
.
string
.
category_0_selected
),
Toast
.
LENGTH_LONG
).
show
();
configApp
();
}
else
{
config
.
setFoundation
(
nemopaySession
.
getFoundationId
(),
nemopaySession
.
getFoundationName
());
config
.
setGroupList
(
finalGroupAdapter
.
getList
());
startMainActivity
(
ArticleCategoryActivity
.
this
);
}
}
})
.
setNegativeButton
(
R
.
string
.
cancel
,
new
DialogInterface
.
OnClickListener
()
{
public
void
onClick
(
DialogInterface
dialogInterface
,
int
id
)
{
config
.
setCanCancel
(
true
);
}
});
dialog
.
createDialog
(
alertDialogBuilder
);
}
});
}
}.
start
();
}
public
void
clearPanier
()
{
for
(
GroupFragment
groupFragment
:
groupFragmentList
)
groupFragment
.
clear
();
panier
.
clear
();
}
public
void
setBackgroundColor
(
int
color
)
{
this
.
tabHost
.
setBackgroundColor
(
color
);
new
Thread
(){
@Override
public
void
run
()
{
try
{
Thread
.
sleep
(
2500
);
runOnUiThread
(
new
Runnable
()
{
@Override
public
void
run
()
{
tabHost
.
setBackgroundColor
(
getResources
().
getColor
(
R
.
color
.
white
));
}
});
}
catch
(
Exception
e
)
{
Log
.
e
(
LOG_TAG
,
"error: "
+
e
.
getMessage
());
}
}
}.
start
();
}
protected
void
pay
(
final
String
badgeId
)
{
dialog
.
startLoading
(
this
,
getResources
().
getString
(
R
.
string
.
paiement
),
getResources
().
getString
(
R
.
string
.
transaction_in_progress
));
new
Thread
()
{
@Override
public
void
run
()
{
try
{
nemopaySession
.
setTransaction
(
badgeId
,
panier
.
getArticleList
());
Thread
.
sleep
(
100
);
runOnUiThread
(
new
Runnable
()
{
@Override
public
void
run
()
{
dialog
.
stopLoading
();
Toast
.
makeText
(
ArticleCategoryActivity
.
this
,
"Paiement effectué"
,
Toast
.
LENGTH_LONG
).
show
();
setBackgroundColor
(
getResources
().
getColor
(
R
.
color
.
success
));
((
Vibrator
)
getSystemService
(
ArticleCategoryActivity
.
VIBRATOR_SERVICE
)).
vibrate
(
250
);
clearPanier
();
}
});
}
catch
(
final
Exception
e
)
{
Log
.
e
(
LOG_TAG
,
"error: "
+
e
.
getMessage
());
try
{
final
JsonNode
response
=
nemopaySession
.
getRequest
().
getJSONResponse
();
if
(
response
.
has
(
"error"
)
&&
response
.
get
(
"error"
).
has
(
"message"
))
{
runOnUiThread
(
new
Runnable
()
{
@Override
public
void
run
()
{
dialog
.
stopLoading
();
dialog
.
errorDialog
(
ArticleCategoryActivity
.
this
,
getString
(
R
.
string
.
paiement
),
response
.
get
(
"error"
).
get
(
"message"
).
textValue
());
setBackgroundColor
(
getResources
().
getColor
(
R
.
color
.
error
));
((
Vibrator
)
getSystemService
(
ArticleCategoryActivity
.
VIBRATOR_SERVICE
)).
vibrate
(
500
);
}
});
}
else
throw
new
Exception
(
""
);
}
catch
(
Exception
e1
)
{
runOnUiThread
(
new
Runnable
()
{
@Override
public
void
run
()
{
dialog
.
stopLoading
();
dialog
.
errorDialog
(
ArticleCategoryActivity
.
this
,
getString
(
R
.
string
.
paiement
),
e
.
getMessage
());
setBackgroundColor
(
getResources
().
getColor
(
R
.
color
.
error
));
((
Vibrator
)
getSystemService
(
ArticleCategoryActivity
.
VIBRATOR_SERVICE
)).
vibrate
(
500
);
}
});
}
}
}
}.
start
();
}
protected
void
createCategories
(
final
JsonNode
categoryList
,
final
JsonNode
articleList
)
throws
Exception
{
protected
void
createGroups
(
final
JsonNode
categoryList
,
final
JsonNode
articleList
)
throws
Exception
{
HashMap
<
Integer
,
ArrayList
<
JsonNode
>>
articlesPerCategory
=
new
HashMap
<
Integer
,
ArrayList
<
JsonNode
>>();
final
int
foundationId
=
nemopaySession
.
getFoundationId
();
final
JsonNode
authorizedList
=
config
.
getGroupList
();
...
...
@@ -454,20 +52,7 @@ public class ArticleCategoryActivity extends BaseActivity {
else
if
(
articlesForThisCategory
==
null
||
articlesForThisCategory
.
size
()
==
0
)
continue
;
createNew
Category
(
category
.
get
(
"name"
).
textValue
(),
(
ArrayNode
)
new
ObjectMapper
().
readTree
(
articlesForThisCategory
.
toString
()));
createNew
Group
(
category
.
get
(
"name"
).
textValue
(),
(
ArrayNode
)
new
ObjectMapper
().
readTree
(
articlesForThisCategory
.
toString
()));
}
}
protected
void
createNewCategory
(
final
String
name
,
final
ArrayNode
articleList
)
throws
Exception
{
GroupFragment
articleGroupFragment
=
new
GroupFragment
(
ArticleCategoryActivity
.
this
,
articleList
,
this
.
panier
,
this
.
config
);
TabHost
.
TabSpec
newTabSpec
=
this
.
tabHost
.
newTabSpec
(
name
);
newTabSpec
.
setIndicator
(
name
);
newTabSpec
.
setContent
(
articleGroupFragment
);
this
.
groupFragmentList
.
add
(
articleGroupFragment
);
this
.
tabHost
.
addTab
(
newTabSpec
);
nbrCategories
++;
}
}
app/src/main/java/fr/utc/simde/payutc/ArticleGroupActivity.java
0 → 100644
View file @
68de0c7e
package
fr.utc.simde.payutc
;
import
android.content.DialogInterface
;
import
android.os.Bundle
;
import
android.os.Vibrator
;
import
android.support.v7.app.AlertDialog
;
import
android.util.Log
;
import
android.view.LayoutInflater
;
import
android.view.View
;
import
android.widget.Button
;
import
android.widget.ImageButton
;
import
android.widget.ListView
;
import
android.widget.RadioButton
;
import
android.widget.Switch
;
import
android.widget.TabHost
;
import
android.widget.TextView
;
import
android.widget.Toast
;
import
com.fasterxml.jackson.databind.JsonNode
;
import
com.fasterxml.jackson.databind.ObjectMapper
;
import
com.fasterxml.jackson.databind.node.ArrayNode
;
import
java.util.ArrayList
;
import
java.util.HashMap
;
import
java.util.List
;
import
fr.utc.simde.payutc.articles.GroupAdapter
;
import
fr.utc.simde.payutc.articles.GroupFragment
;
import
fr.utc.simde.payutc.tools.HTTPRequest
;
import
fr.utc.simde.payutc.tools.Panier
;
/**
* Created by Samy on 27/10/2017.
*/
public
abstract
class
ArticleGroupActivity
extends
BaseActivity
{
private
static
final
String
LOG_TAG
=
"_ArticleGroupActivity"
;
protected
ImageButton
paramButton
;
protected
ImageButton
deleteButton
;
protected
TabHost
tabHost
;
protected
Panier
panier
;
protected
List
<
GroupFragment
>
groupFragmentList
;
protected
int
nbrGroups
;
@Override
public
void
onCreate
(
Bundle
savedInstanceState
)
{
super
.
onCreate
(
savedInstanceState
);
setContentView
(
R
.
layout
.
activity_article_group
);
TextView
textView
=
findViewById
(
R
.
id
.
text_price
);
this
.
panier
=
new
Panier
(
textView
);
this
.
paramButton
=
findViewById
(
R
.
id
.
image_param
);
this
.
deleteButton
=
findViewById
(
R
.
id
.
image_delete
);
this
.
tabHost
=
findViewById
(
R
.
id
.
tab_categories
);
this
.
tabHost
.
setup
();
this
.
groupFragmentList
=
new
ArrayList
<
GroupFragment
>();
this
.
nbrGroups
=
0
;
try
{
createGroups
(
new
ObjectMapper
().
readTree
(
getIntent
().
getExtras
().
getString
(
"groupList"
)),
new
ObjectMapper
().
readTree
(
getIntent
().
getExtras
().
getString
(
"articleList"
)));
}
catch
(
Exception
e
)
{
Log
.
e
(
LOG_TAG
,
"error: "
+
e
.
getMessage
());
dialog
.
errorDialog
(
this
,
getResources
().
getString
(
R
.
string
.
information_collection
),
getResources
().
getString
(
R
.
string
.
error_view
),
new
DialogInterface
.
OnClickListener
()
{
@Override
public
void
onClick
(
DialogInterface
dialogInterface
,
int
id
)
{
finish
();
}
});
}
if
(
this
.
nbrGroups
==
0
)
{
dialog
.
errorDialog
(
this
,
getResources
().
getString
(
R
.
string
.
information_collection
),
getResources
().
getString
(
R
.
string
.
article_error_0_categorie_not_0
),
new
DialogInterface
.
OnClickListener
()
{
@Override
public
void
onClick
(
DialogInterface
dialogInterface
,
int
id
)
{
finish
();
}
});
}
this
.
paramButton
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
view
)
{
if
(
config
.
getFoundationId
()
==
-
1
)
{
final
View
popupView
=
LayoutInflater
.
from
(
ArticleGroupActivity
.
this
).
inflate
(
R
.
layout
.
dialog_config
,
null
,
false
);
final
RadioButton
radioKeyboard
=
popupView
.
findViewById
(
R
.
id
.
radio_keyboard
);
final
RadioButton
radioCategory
=
popupView
.
findViewById
(
R
.
id
.
radio_category
);
final
RadioButton
radioGrid
=
popupView
.
findViewById
(
R
.
id
.
radio_grid
);
final
RadioButton
radioList
=
popupView
.
findViewById
(
R
.
id
.
radio_list
);
final
Switch
switchCotisant
=
popupView
.
findViewById
(
R
.
id
.
swtich_cotisant
);
final
Switch
swtich18
=
popupView
.
findViewById
(
R
.
id
.
swtich_18
);
final
Button
configButton
=
popupView
.
findViewById
(
R
.
id
.
button_config
);
if
(
config
.
getInKeyboard
())
radioKeyboard
.
setChecked
(
true
);
else
radioCategory
.
setChecked
(
true
);
if
(
config
.
getInGrid
())
radioGrid
.
setChecked
(
true
);
else
radioList
.
setChecked
(
true
);
switchCotisant
.
setChecked
(
config
.
getPrintCotisant
());
swtich18
.
setChecked
(
config
.
getPrint18
());
configButton
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
final
View
view
)
{
configApp
();
}
});