本文介绍了需要帮助的android例如定期EX pression接受的EditText仅数!的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
每一个我需要在Android的例子,让我的EditText(密码)THX用户类型仅数!
Every one I need example in android that allow user type only number in my EditText (password) thx !
推荐答案
MainActivity
MainActivity
public class MainActivity extends Activity {
EditText ed;
Button b;
String input;
String result;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
b=(Button) findViewById(R.id.bt);
ed=(EditText) findViewById(R.id.ed1);
b.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View arg0) {
input = ed.getText().toString();
String regex ="^[0-9]+$";
Matcher matcher = Pattern.compile( regex ).matcher(input);
if (matcher.find( ))
{
result = matcher.group();
Toast.makeText(MainActivity.this, "Matches",1000 ).show();
System.out.println("number="+result);
}
else
{
Toast.makeText(MainActivity.this, " No Matches",1000 ).show();
System.out.println("no match found");
}
}
});
}
}
您XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:padding="@dimen/padding_medium"
android:text="@string/hello_world"
tools:context=".MainActivity" />
<EditText
android:layout_width="wrap_content"
android:layout_height="50dp"
android:id="@+id/ed1"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="submit"
android:id="@+id/bt"
/>
</LinearLayout>
这篇关于需要帮助的android例如定期EX pression接受的EditText仅数!的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!