/* * Geopaparazzi - Digital field mapping on Android based devices * Copyright (C) 2010 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 android.content.Context; import android.content.Intent; import android.net.Uri; import android.text.method.LinkMovementMethod; import android.util.AttributeSet; import android.view.View; import android.view.ViewGroup.LayoutParams; import android.widget.LinearLayout; import android.widget.TextView; import eu.geopaparazzi.library.R; /** * A custom {@link TextView} view. * * @author Andrea Antonello (www.hydrologis.com) */ public class GTextView extends View implements GView{ private TextView textView; public GTextView( Context context, AttributeSet attrs, int defStyle ) { super(context, attrs, defStyle); } public GTextView( Context context, AttributeSet attrs ) { super(context, attrs); } public GTextView( final Context context, AttributeSet attrs, LinearLayout mainView, String value, String size, boolean withLine, final String url ) { super(context, attrs); LinearLayout textLayout = new LinearLayout(context); LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT); layoutParams.setMargins(10, 10, 10, 10); textLayout.setLayoutParams(layoutParams); textLayout.setOrientation(LinearLayout.VERTICAL); // textLayout.setBackgroundDrawable(getResources().getDrawable(R.drawable.formitem_background)); mainView.addView(textLayout); textView = new TextView(context); textView.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT)); textView.setPadding(2, 2, 2, 2); textView.setText(value); size = size.trim(); if (size.equals("large")) { textView.setTextAppearance(context, android.R.attr.textAppearanceLarge); } else if (size.equals("medium")) { textView.setTextAppearance(context, android.R.attr.textAppearanceMedium); } else if (size.equals("small")) { textView.setTextAppearance(context, android.R.attr.textAppearanceSmall); } else { int sizeInt = Integer.parseInt(size); textView.setTextSize(sizeInt); } textView.setTextColor(context.getResources().getColor(R.color.formcolor)); if (url != null && url.length() > 0) { textView.setMovementMethod(LinkMovementMethod.getInstance()); textView.setOnClickListener(new View.OnClickListener(){ public void onClick( View v ) { Uri uri = Uri.parse(url); Intent intent = new Intent(Intent.ACTION_VIEW, uri); context.startActivity(intent); } }); } textLayout.addView(textView); if (withLine) { View view = new View(context); view.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, 2)); view.setBackgroundColor(context.getResources().getColor(R.color.formcolor)); textLayout.addView(view); } } public String getValue() { return textView.getText().toString(); } @Override public void setOnActivityResult( Intent data ) { } }