我正在开发一个Android应用程序..其中用户的FirstName,middlename和LastName被视为输入..并且...应用程序基于数字学...所以每个字母都有自己的值...如下所示。 。 A,J,S - 1 B,K,T - 2 C,L,U - 3 D,M,V - 4 E,N,W - 5 F,O,X - 6 G,P,Y - 7 H,Q,Z - 8 我,R - 9 因此,当用户输入他的名字时...... FirstName的第一个字母,则必须首先使用中间名字母和姓氏的第一个字母..并且相应的值必须添加到单个数字......并且值必须在另一页上显示 例如:我的名字ROSHAN PETER ..所以名字:ROSHAN和LAst姓名:PETER ..所以拿'罗莎'和'彼得'的第一个字母..所以我们将得到两个字母'R'和amp; 'P'..我没有中间名..因此该值将为零。那么R-9的值和P-7的值就这样加上9 + 7 = 16所以我们需要以单个数字显示所以,我们添加16个字母,如1 + 6 = 7 ..所以我们的答案是7我们需要在另一页上显示它... 我做了这样的代码,但结果没有显示..
MainActvity
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void gReport(View V)
{
EditText et1 = (EditText) findViewById (R.id.editText1);
EditText et2 = (EditText) findViewById (R.id.editText2);
EditText et3 = (EditText) findViewById (R.id.editText3);
TextView tv1 = (TextView) findViewById (R.id.textView1);
ArrayList<Integer> sum1;
long sum2 =0;
sum1 = getMissingNo(et1.getText().toString() + et2.getText().toString());
String firstName = et1.getText().toString();
String middleName = et2.getText().toString();
String lastName = et3.getText().toString();
char blno = firstName.charAt(0);
char blno1 = middleName.charAt(0);
char blno2 = lastName.charAt(0);
sum2 = getSum(String.valueOf(blno) + String.valueOf(blno1) + String.valueOf(blno2));
int itemCount =sum1.size();
tv1.setText(String.valueOf(blno));
Intent in = new Intent(this, FirstActivity.class);
in.putIntegerArrayListExtra("sum1", (ArrayList<Integer>) sum1);
in.putExtra("itemCount", itemCount);
in.putExtra("name2", sum2);
startActivity(in);
//int itemCount = sum1.size();
}
private long getSum(String text) {
// TODO Auto-generated method stub
long sum2 = 0;
char[] name2 = new char[text.length()];
name2 = text.toCharArray();
for(int i=0; i<text.length(); i++)
{
sum2 += value2( name2[i] );
}
while (sum2>9)
{
sum2 = findDigitSum2(sum2);
}
return sum2;
}
private long findDigitSum2(long n) {
// TODO Auto-generated method stub
int sum2=0;
while (n != 0)
{
sum2 += n % 10;
n = n / 10;
}
return sum2;
}
private long value2(char a) {
// TODO Auto-generated method stub
switch(a)
{
case 'A': return 1;
case 'B': return 2;
case 'C': return 3;
case 'D': return 4;
case 'E': return 5;
case 'F': return 6;
case 'G': return 7;
case 'H': return 8;
case 'I': return 9;
case 'J': return 1;
case 'K': return 2;
case 'L': return 3;
case 'M': return 4;
case 'N': return 5;
case 'O': return 6;
case 'P': return 7;
case 'Q': return 8;
case 'R': return 9;
case 'S': return 1;
case 'T': return 2;
case 'U': return 3;
case 'V': return 4;
case 'W': return 5;
case 'X': return 6;
case 'Y': return 7;
case 'Z': return 8;
default: return 0;
}
}
private ArrayList<Integer> getMissingNo(String text) {
ArrayList<Integer> sum1 = new ArrayList<Integer>();
// TextView tv1 = (TextView) findViewById (R.id.textView1);
boolean[] usedNos = new boolean[9];
for(int i=0; i<text.length(); i++){
usedNos [(int) (value1(text.charAt(i))-1)] = true;
}
for(int i=0; i<9; i++){
if(!usedNos[i]){
sum1.add(i+1);
//System.out.println((i+1) + " is missing");
//tv1.setText(String.valueOf((i+1)));
}
}
return sum1;
// TODO Auto-generated method stub
}
private long value1(char a) {
// TODO Auto-generated method stub
switch(a)
{
case 'A': return 1;
case 'B': return 2;
case 'C': return 3;
case 'D': return 4;
case 'E': return 5;
case 'F': return 6;
case 'G': return 7;
case 'H': return 8;
case 'I': return 9;
case 'J': return 1;
case 'K': return 2;
case 'L': return 3;
case 'M': return 4;
case 'N': return 5;
case 'O': return 6;
case 'P': return 7;
case 'Q': return 8;
case 'R': return 9;
case 'S': return 1;
case 'T': return 2;
case 'U': return 3;
case 'V': return 4;
case 'W': return 5;
case 'X': return 6;
case 'Y': return 7;
case 'Z': return 8;
default: return 0;
}
}
FirstActivity
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.firstactivity_xm);
TextView tv1 = (TextView) findViewById (R.id.textView1);
ArrayList<Integer> list = getIntent().getIntegerArrayListExtra("sum1");
tv1.setText("");
for (int j = 0; j < list.size(); j++){
tv1.append("KarmicLesson " + list.get(j) + "\n");
}
TextView tv3 = (TextView) findViewById (R.id.textView3);
tv3.setText(getIntent().getStringExtra("name2"));
}
答案 0 :(得分:1)
在Java中,可以使用以下代码选择字符串的第一个字母: -
String s = "Roshan";
char c = s.charAt(0);
将完成这项工作。