Small fixes for ConfigAdpater and WriteApk
This commit is contained in:
parent
62ab14ed6b
commit
915d565365
|
@ -63,12 +63,12 @@ public class ConfigAdapter extends RecyclerView.Adapter<ConfigAdapter.ConfigView
|
||||||
{
|
{
|
||||||
//Inflate the view
|
//Inflate the view
|
||||||
View view = LayoutInflater.from(parent.getContext())
|
View view = LayoutInflater.from(parent.getContext())
|
||||||
.inflate(R.layout.text_view, parent, false);
|
.inflate(R.layout.config_view, parent, false);
|
||||||
|
|
||||||
//Create a new ConfigViewHolder
|
//Create a new ConfigViewHolder
|
||||||
final ConfigViewHolder configViewHolder = new ConfigViewHolder(view);
|
final ConfigViewHolder configViewHolder = new ConfigViewHolder(view);
|
||||||
|
|
||||||
//Set an onClickListner for each of the config options
|
//Set an onClickListener for each of the config options
|
||||||
view.setOnClickListener(new View.OnClickListener() {
|
view.setOnClickListener(new View.OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onClick(View v){
|
public void onClick(View v){
|
||||||
|
|
|
@ -114,12 +114,6 @@ public class WriteApk {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/***********************************************************************************
|
|
||||||
| Check if the current entry matches a file that needs to be placed in the APK
|
|
||||||
| zeName = The ZipEntry Name
|
|
||||||
| files = The files that are being checked
|
|
||||||
| path = The path that is being checked
|
|
||||||
***********************************************************************************/
|
|
||||||
/**
|
/**
|
||||||
* Check if the current entry matches a file that needs to be placed in the APK
|
* Check if the current entry matches a file that needs to be placed in the APK
|
||||||
* @param zeName = The ZipEntry Name
|
* @param zeName = The ZipEntry Name
|
||||||
|
|
Loading…
Reference in New Issue