/* * Geopaparazzi - Digital field mapping on Android based devices * Copyright (C) 2016 HydroloGIS (www.hydrologis.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package eu.geopaparazzi.library.forms.views; import static eu.geopaparazzi.library.forms.FormUtilities.COLON; import static eu.geopaparazzi.library.forms.FormUtilities.UNDERSCORE; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.util.AttributeSet; import android.view.View; import android.view.ViewGroup.LayoutParams; import android.widget.Button; import android.widget.EditText; import android.widget.LinearLayout; import android.widget.TextView; import eu.geopaparazzi.library.R; import eu.geopaparazzi.library.forms.FormDetailFragment; import eu.geopaparazzi.library.nfc.NfcIdReaderActivity; import eu.geopaparazzi.library.util.Compat; import eu.geopaparazzi.library.util.LibraryConstants; /** * A custom NFC UID reader view. * * @author Andrea Antonello (www.hydrologis.com) */ public class GNfcUidView extends View implements GView { private String _value; private EditText uidText; private FormDetailFragment fragmentDetail; /** * @param context the context to use. * @param attrs attributes. * @param defStyle def style. */ public GNfcUidView( Context context, AttributeSet attrs, int defStyle ) { super(context, attrs, defStyle); } /** * @param context the context to use. * @param attrs attributes. */ public GNfcUidView( Context context, AttributeSet attrs ) { super(context, attrs); } /** * @param activity activity. * @param attrs attributes. * @param requestCode the request code for the activity return. * @param parentView parent * @param label label * @param value value * @param constraintDescription constraints */ public GNfcUidView( final Activity activity, AttributeSet attrs, final int requestCode, LinearLayout parentView, String label, String value, String constraintDescription ) { super(activity, attrs); handleView(activity, requestCode, parentView, label, value, constraintDescription); } /** * @param fragmentDetail the fragemtn. * @param attrs attributes. * @param requestCode the request code for the activity return. * @param parentView parent * @param label label * @param value value * @param constraintDescription constraints */ public GNfcUidView( FormDetailFragment fragmentDetail, AttributeSet attrs, final int requestCode, LinearLayout parentView, String label, String value, String constraintDescription ) { super(fragmentDetail.getActivity(), attrs); this.fragmentDetail = fragmentDetail; handleView(fragmentDetail.getActivity(), requestCode, parentView, label, value, constraintDescription); } private void handleView( final Activity activity, final int requestCode, LinearLayout parentView, String label, String value, String constraintDescription ) { _value = value; LinearLayout textLayout = new LinearLayout(activity); LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT); layoutParams.setMargins(10, 10, 10, 10); textLayout.setLayoutParams(layoutParams); textLayout.setOrientation(LinearLayout.VERTICAL); parentView.addView(textLayout); TextView textView = new TextView(activity); textView.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT)); textView.setPadding(2, 2, 2, 2); textView.setText(label.replace(UNDERSCORE, " ").replace(COLON, " ") + " " + constraintDescription); textView.setTextColor(Compat.getColor(activity, R.color.formcolor)); textLayout.addView(textView); final Button button = new Button(activity); button.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT)); button.setPadding(15, 5, 15, 5); button.setText(R.string.read_nfc_uid); textLayout.addView(button); uidText = new EditText(activity); uidText.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT)); uidText.setPadding(2, 2, 2, 2); uidText.setEnabled(false); uidText.setText(value); uidText.setTextColor(Compat.getColor(activity, R.color.main_text_color_neutral)); uidText.setKeyListener(null); textLayout.addView(uidText); button.setOnClickListener(new OnClickListener(){ public void onClick( View v ) { Intent nfcIntent = new Intent(activity, NfcIdReaderActivity.class); if (fragmentDetail != null) { fragmentDetail.startActivityForResult(nfcIntent, requestCode); } else { activity.startActivityForResult(nfcIntent, requestCode); } } }); } public String getValue() { return _value; } @Override public void setOnActivityResult( Intent data ) { String rfidUID = data.getStringExtra(LibraryConstants.PREFS_KEY_TEXT); if (rfidUID == null) { rfidUID = ""; //$NON-NLS-1$ } _value = rfidUID; uidText.setText(rfidUID); } @Override public void refresh( Context context ) { // TODO Auto-generated method stub } }