Sha256: d511b0f8f96efd41c4e3747951404f4a4ccba2aff95de584957f93a5587b12a2

Contents?: true

Size: 1.3 KB

Versions: 14

Compression:

Stored size: 1.3 KB

Contents

/**
 * EditText control that is invisible and invokes the Numeric keyboard 
 * since the default is always Alphanumeric
 */
package com.rho.rhoelements;

import android.content.Context;
import android.util.AttributeSet;
import android.view.KeyEvent;
import android.view.View;
import android.widget.EditText;

/**
 * @author pxb743
 *
 */
public class WebEditText extends EditText
{
	//Pointer to the web view to dispatch the keys
	View mWebView;
	
	/**
	 * Constructor to save the web view
	 * @param context
	 * @param view
	 */
	public WebEditText(Context context, View view)
	{
		super(context);		
		mWebView = view;		
	}
	
	public WebEditText(Context context)
	{
		super(context);		
	}

	public WebEditText(Context context, AttributeSet attrs)
	{
		super(context, attrs);		
	}
	
	public WebEditText(Context context, AttributeSet attrs, int defStyle)
	{
		super(context, attrs, defStyle);	
	}

	/**
	 * Override the dispatch key event to send the key events to the web view
	 * from the invisible Edit Text control
	 */
	@Override
	public boolean dispatchKeyEvent(KeyEvent event)
	{	
		//Ignore system events
		//if (event.isSystem()) {
            //return super.dispatchKeyEvent(event);
        //}
		
		//Dispatch the keys to the web view
		mWebView.dispatchKeyEvent(event);
		return super.dispatchKeyEvent(event);       
	}
}

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
rhodes-7.6.0 extensions/rhoelementsext/ext/rhoelementsext/platform/android/rhoelements_temp/src/com/rho/rhoelements/WebEditText.java
rhodes-7.5.1 extensions/rhoelementsext/ext/rhoelementsext/platform/android/rhoelements_temp/src/com/rho/rhoelements/WebEditText.java
rhodes-7.4.1 extensions/rhoelementsext/ext/rhoelementsext/platform/android/rhoelements_temp/src/com/rho/rhoelements/WebEditText.java
rhodes-7.1.17 extensions/rhoelementsext/ext/rhoelementsext/platform/android/rhoelements_temp/src/com/rho/rhoelements/WebEditText.java
rhodes-6.2.0 extensions/rhoelementsext/ext/rhoelementsext/platform/android/rhoelements_temp/src/com/rho/rhoelements/WebEditText.java
rhodes-6.0.11 extensions/rhoelementsext/ext/rhoelementsext/platform/android/rhoelements_temp/src/com/rho/rhoelements/WebEditText.java
rhodes-5.5.18 extensions/rhoelementsext/ext/rhoelementsext/platform/android/rhoelements_temp/src/com/rho/rhoelements/WebEditText.java
rhodes-5.5.17 extensions/rhoelementsext/ext/rhoelementsext/platform/android/rhoelements_temp/src/com/rho/rhoelements/WebEditText.java
rhodes-5.5.15 extensions/rhoelementsext/ext/rhoelementsext/platform/android/rhoelements_temp/src/com/rho/rhoelements/WebEditText.java
rhodes-5.5.0.22 extensions/rhoelementsext/ext/rhoelementsext/platform/android/rhoelements_temp/src/com/rho/rhoelements/WebEditText.java
rhodes-5.5.2 extensions/rhoelementsext/ext/rhoelementsext/platform/android/rhoelements_temp/src/com/rho/rhoelements/WebEditText.java
rhodes-5.5.0.7 extensions/rhoelementsext/ext/rhoelementsext/platform/android/rhoelements_temp/src/com/rho/rhoelements/WebEditText.java
rhodes-5.5.0.3 extensions/rhoelementsext/ext/rhoelementsext/platform/android/rhoelements_temp/src/com/rho/rhoelements/WebEditText.java
rhodes-5.5.0 extensions/rhoelementsext/ext/rhoelementsext/platform/android/rhoelements_temp/src/com/rho/rhoelements/WebEditText.java