gpt4 book ai didi

android - 触摸微调器时,应用崩溃

转载 作者:行者123 更新时间:2023-12-03 17:46:47 25 4
gpt4 key购买 nike

首先,这是我第一次来这里,如果我在举止上失败,请原谅我。

我正在做一个简单的微调器。它读取位于string.xml中的字符串数组,然后比较国家/地区代码以从drawable文件夹(适当放置所有图像)中选择适当的图像。一切正常,似乎微调器加载了信息,但是当我触摸显示该信息时,应用程序崩溃了。

如果有人可以帮助我将不胜感激

适配器类别:

public class CustomAdapterPhone2 extends ArrayAdapter<String> {
public CustomAdapterPhone2(Context context, int resource, String [] objects) {
super(context, resource, objects);

}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
return getCustomView(position, convertView, parent);
}

public View getCustomView(int position, View convertView, ViewGroup parent) {

LayoutInflater inflater= LayoutInflater.from(getContext());
convertView=inflater.inflate(R.layout.custom_spinner_items_phone, parent, false);
TextView label=(TextView)convertView.findViewById(R.id.custom_phone_textview);
String [] countries = getContext().getResources().getStringArray(R.array.CountryCodes);
String [] aux = countries[position].split(",");
label.setText(aux[1]);
String aux2 = aux[1].trim().toLowerCase();
// int aux3 = String.valueOf(aux2);

ImageView icon=(ImageView)convertView.findViewById(R.id.custom_phone_image);
icon.setImageResource(getContext().getResources().getIdentifier( aux2, "drawable", getContext().getPackageName()));
return convertView;
}
}

主类:
 Spinner spinner_country_code = (Spinner)findViewById(R.id.phone_spinner);
spinner_country_code.setOnItemSelectedListener(this);

CustomAdapterPhone2 customAdapterPhone2 = new CustomAdapterPhone2(getApplicationContext(),R.layout.custom_spinner_items_phone,recourseList);
spinner_country_code.setAdapter(customAdapterPhone2);

微调器布局只有一个textview和一个ImageView,没有花哨的东西。
我已经被这个问题困扰了好几天了,更糟糕的是,我已经让其他微调器工作了。

最佳答案

使用以下代码代替您的适配器代码,因为您正在使用扩展简单的ArrayAdapter来使图像使用BaseAdapter。

public class CustomAdapterPhone2 extends BaseAdapter {
String[] countries;
private Context context;

public CustomAdapterPhone2(Context contexts, int resource, String[] objects) {
/*super(context, resource, objects);*/
this.context = contexts;
this.countries = context.getResources().getStringArray(R.array.CountryCodes);
}

@Override
public int getCount() {
return countries.length;
}

@Override
public Object getItem(int position) {
return position;
}

@Override
public long getItemId(int position) {
return position;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = LayoutInflater.from(context);
convertView = inflater.inflate(R.layout.custom_spinner_items_phone, parent, false);
TextView label = (TextView) convertView.findViewById(R.id.custom_phone_textview);

String[] aux = countries[position].split(",");
label.setText(aux[1]);
String aux2 = aux[1].trim().toLowerCase();
// int aux3 = String.valueOf(aux2);

ImageView icon = (ImageView) convertView.findViewById(R.id.custom_phone_image);
icon.setImageResource(context.getResources().getIdentifier(aux2, "drawable", context.getPackageName()));
return convertView;
}
}

我已经对其进行了很好的测试。

关于android - 触摸微调器时,应用崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36448013/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com