gpt4 book ai didi

java - 无法解析构造函数 ArrayAdapter (saveourcar.soc.Insurance,int,int, java.lang.String[],java.lang.Integer[])

转载 作者:行者123 更新时间:2023-11-30 10:46:13 24 4
gpt4 key购买 nike

我已经使用 listView 制作了一个包含保险公司列表的应用程序. listView使用数组填充。我目前可以使用过滤器搜索此列表。但是在 listView 中的每个项目旁边我想要一张图片,我可以使用 CustomListAdapter adapter=new CustomListAdapter(this, itemname, imgid); 来做到这一点然而,这会阻止我的搜索工作,所以我试图像这样实现它 adapter = new ArrayAdapter<String>(this, R.layout.mylist, R.id.textView1, itemname, imgid);然后抛出 Cannot resolve constructor ArrayAdapter (saveourcar.soc.Insurance,int,int, java.lang.String[],java.lang.Integer[])错误。无论如何我可以得到我的 imgid包含在我的ArrayAdapter .

我的代码是休闲的

保险.java

    public class Insurance extends AppCompatActivity {
ListView list;
ArrayList<String> listItems;
ArrayAdapter<String> adapter;
EditText inputSearch;
String[] itemname ={
"123.ie",
"AA",
"Acorn",
"Admiral",
"AIG",
"Allianz",
"Aviva",
"Auto Direct",
"AXA",
"Chill",
"Churchill",
"CoverBox",
"DirectChoice",
"FBD",




};

Integer[] imgid= {
R.drawable.onetwothree,
R.drawable.aa,
R.drawable.acorn,
R.drawable.admiral,
R.drawable.aig,
R.drawable.allianz,
R.drawable.aviva,
R.drawable.autodirect,
R.drawable.axa,
R.drawable.chill,
R.drawable.churchill,
R.drawable.coverbox,
R.drawable.directchoice,
R.drawable.fbd,


};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_insurance);
adapter = new ArrayAdapter<String>(this, R.layout.mylist, R.id.textView1, itemname, imgid);
CustomListAdapter adapter=new CustomListAdapter(this, itemname, imgid);
list=(ListView)findViewById(R.id.list);
inputSearch = (EditText) findViewById(R.id.itemtext);
list.setAdapter(adapter);


inputSearch.addTextChangedListener(new TextWatcher() {

@Override
public void onTextChanged(CharSequence cs, int arg1, int arg2, int arg3) {
// When user changed the Text
Insurance.this.adapter.getFilter().filter(cs);


}

@Override
public void beforeTextChanged(CharSequence arg0, int arg1, int arg2,
int arg3) {
// TODO Auto-generated method stub

}

@Override
public void afterTextChanged(Editable arg0) {
// TODO Auto-generated method stub
}
});

保险.xml

    <EditText
android:layout_width="400dp"
android:layout_height="60dp"
android:id="@+id/itemtext"
android:layout_marginBottom="50dp"

/>
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginTop="107dp">
</ListView>

我的列表.xml

<LinearLayout
android:layout_width="0dp"
android:layout_height="60dp"
android:layout_weight="2"
>
<ImageView
android:id="@+id/icon"
android:layout_width="60dp"
android:layout_height="60dp"
android:padding="5dp"
/>
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="6"
android:orientation="vertical" >

<TextView
android:id="@+id/item"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
android:padding="2dp"
android:text="Medium Text"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#FFFFFF"
/>


<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="TextView"
/>
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1"
android:orientation="vertical"
>
<ImageView
android:id="@+id/imageView2"
android:layout_width="20dp"
android:layout_height="50dp"
android:layout_alignParentRight="true"
android:src="@drawable/nextarrow"
android:layout_marginTop="6dp" />

编辑

如果我从我的 ArrayAdapter 中拿走 imgid,我不会过滤我的 listView,所以我尝试添加 R.layout.mylist到我的 CustomListAdapter 但是当我尝试 add R.layout.myList到我的CustomListAdapter我得到了休闲错误

Error:(67, 35) error: constructor CustomListAdapter in class CustomListAdapter cannot be applied to given types;
required: Activity,String[],Integer[]
found: Insurance,String[],Integer[],int
reason: actual and formal argument lists differ in length

最佳答案

您应该为此使用您的 CustomListAdapter,因为您需要在每一行中同时显示名称和图像。为了使这更容易,您应该做的一件事是将图像和名称组合到一个对象中,并更新 CustomListAdapter 以使用该新对象的列表而不是两个单独的数组。否则,您最终将不得不编写自定义过滤器并自己过滤两个数组。

此外,在返回名称的新对象上创建一个 toString() 方法。默认情况下,ArrayAdapter 过滤器会将您输入的 String 与每个对象的 toString() 进行比较,以了解要保留哪些记录以及要过滤掉哪些记录。这将修复 CustomListAdapter 上的过滤问题。

关于java - 无法解析构造函数 ArrayAdapter (saveourcar.soc.Insurance,int,int, java.lang.String[],java.lang.Integer[]),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36669590/

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