你好,我对Android中的编程有点新鲜到目前为止,我每天都在学习新东西,但有时候我会遇到困难,今天我正在研究一个带有listview的简单项目和一个按钮来检查它是否包含列表视图中的特定字符串。
这是我的代码
private ListView listView1 ;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_blockcontact);
listView1 = (ListView) findViewById( R.id.listView1 );
Button button6 = (Button) findViewById(R.id.button6);
adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, list);
list.add("07474715336");
list.add("+61470405818");
list.add("470105848");
button6.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Context context = getApplicationContext();
String strName = "+61470405818";
for (int i = 0; i < listView1.getAdapter().getCount(); i++) {
if (strName.equals(list)) {
CharSequence text = "found";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.show();
} else
context = getApplicationContext();
CharSequence text = "not found";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.show();
{
}
}
}
});
listView1.setAdapter(adapter);
我正在尝试检查这个号码是否存在 String strName =“+ 61470405818”;
列表可能包含大数字,所以我想首先循环遍历列表,然后检查项目是否存在时使用索引。
答案 0 :(得分:1)
您应该将列表中的项目与目标字符串进行比较。
所以而不是:
strName.equals(list);
使用:
strName.equals((String)listView1.getAdapter().getItem(i));