<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>restrict numeric edittext in android &#8211; MaXEster Technologies  | Technical Blog</title>
	<atom:link href="https://www.maxester.com/blog/tag/restrict-numeric-edittext-in-android/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.maxester.com/blog</link>
	<description>Tutorials, Examples and Implementation code for Developers Help</description>
	<lastBuildDate>Mon, 17 Feb 2025 09:17:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.22</generator>
	<item>
		<title>How to EditText accepts alphabets only in Android?</title>
		<link>https://www.maxester.com/blog/2019/07/11/how-to-edittext-accepts-alphabets-only-in-android/</link>
		<comments>https://www.maxester.com/blog/2019/07/11/how-to-edittext-accepts-alphabets-only-in-android/#respond</comments>
		<pubDate>Thu, 11 Jul 2019 14:15:44 +0000</pubDate>
		<dc:creator><![CDATA[Jony Chawla]]></dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[edittext accepts alphabets only in android]]></category>
		<category><![CDATA[restrict numeric edittext in android]]></category>

		<guid isPermaLink="false">https://www.maxester.com/blog/?p=560</guid>
		<description><![CDATA[<p>Add this line in your EditText tag in layout(xml) file or you can read more about this here Full code EditText should be look like</p>
<p>The post <a rel="nofollow" href="https://www.maxester.com/blog/2019/07/11/how-to-edittext-accepts-alphabets-only-in-android/">How to EditText accepts alphabets only in Android?</a> appeared first on <a rel="nofollow" href="https://www.maxester.com/blog">MaXEster Technologies  | Technical Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[
<p>Add this line in your EditText tag in layout(xml) file or you can read more about this <a href="https://developer.android.com/reference/android/widget/TextView.html#attr_android:digits">here</a></p>



<pre class="wp-block-code"><code>android:digits="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"</code></pre>



<p>Full code EditText should be look like</p>



<center>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Fads -->
<ins class="adsbygoogle fads"
     style="display:inline-block;"
     data-ad-client="ca-pub-3804472713147276"
     data-ad-slot="1267368188"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>
</center>




<pre class="wp-block-code"><code>&lt;EditText 
android:id="@+id/edittext"
android:digits="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
android:layout_width="fill_parent"
android:hint="Enter Full Name"
android:layout_height="wrap_content" /></code></pre>
<p>The post <a rel="nofollow" href="https://www.maxester.com/blog/2019/07/11/how-to-edittext-accepts-alphabets-only-in-android/">How to EditText accepts alphabets only in Android?</a> appeared first on <a rel="nofollow" href="https://www.maxester.com/blog">MaXEster Technologies  | Technical Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.maxester.com/blog/2019/07/11/how-to-edittext-accepts-alphabets-only-in-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
