-1

我有一个编辑文本,在我用来输入 4 位数字的编辑文本中,我将一些键和值对设置为 0-9 数字。

所以我的问题是,当我在编辑文本中输入一个 4 数字(任何数字)时,它应该被转换为一个数字,以便keyvalue应该出现消息中的消息。

这是我的代码:

public class MainActivity extends Activity {

     String Sequence;
     Button buttonok;
     String UserEntreredNumber;
     HashMap<String,String> messagesMap = new HashMap<String,String>();
     String magicMessage;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        final EditText Sequence = (EditText)this.findViewById(R.id.Sequence);    

        Sequence.setError("Input must be 4 digits");



        final AlertDialog.Builder builder = new AlertDialog.Builder(this);
        builder.setPositiveButton(" ok ",  new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int id) {

                dialog.cancel();
          }
        });

        //create hash map

       populateList(); 

        //populate hash map with 0 to 9 key and values


        buttonok=(Button)this.findViewById(R.id.buttonok);
        buttonok.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                UserEntreredNumber = Sequence.getText().toString();
                magicMessage = messagesMap.get(UserEntreredNumber);

                builder.setMessage( magicMessage);
                builder.show();         
        }
    });     

}
    private void populateList() { 

       messagesMap.put("0", "Congratulations!!!, you have been selected."); 
       messagesMap.put("1", "Wow! your program just ran without errors!"); 
       messagesMap.put("2", "It's very hot in office"); 
       messagesMap.put("3", "Wow, what a building? It's awesome");
       messagesMap.put("4", "You got a calll");
       messagesMap.put("5", "There were no errors");
       messagesMap.put("6", "U have been shortlisted for the next round");
       messagesMap.put("7", "nice costume");
       messagesMap.put("8", "do u have any idea!");
       messagesMap.put("9", "Today is a bad day");    
    }   
}
4

2 回答 2

1

也许这会帮助你:

Integer digit; 
try{
   digit = Integer.valueOf(Sequence.getText().toString());
} catch (NumberFormatException e){
   digit = null;
}
if (digit != null && digit >= 0 && digit <= 9999 && Pattern.matches("^[0-9]{4,4}$", Sequence.getText().toString());){
     //some logic
} else {
   Sequence.setError("Input must be 4 digits");
}  
于 2012-12-28T09:12:26.863 回答
0

你说:

4位数字应转换为一位数

如果这是您想要的,则将 4 位数除以 10 的余数,即运算结果:

your 4 digit number % 10

它将返回一个 0 到 9 之间的数字:实际上是 4 位数字的最后一位。


假设您的 4 位数字在变量 digit4 中:

Integer digit4 = Integer.valueOf(Sequence.getText().toString());

然后,您可以通过以下方式在变量 digit1 中获得 0 到 9 之间的单个数字(实际上是 4 位数字的最后一位):

                int digit1 = digit4 % 10;

您尚未指定 4 位数字和个位数字之间的关系,因此如果您想要一个介于 0 t0 9 之间的随机数,无论输入如何,您都可以使用public int nextInt (int n)方法获得它,例如:

Random r= new Random();
int digit1 = r.nextInt(10);
于 2012-12-28T09:53:34.317 回答