gpt4 book ai didi

android - 更改 ListView 中所选项目的背景颜色和字体颜色

转载 作者:行者123 更新时间:2023-11-29 17:22:45 24 4
gpt4 key购买 nike

  • 我想在 ListView 的特定行上进行选择时更改背景颜色和字体颜色

MyAdapter 类:

public class ListViewAdapter extends BaseAdapter {

Context ctx;
ArrayList<HashMap<String, String>> arraylist;
LayoutInflater inflater;

TextView a, b;
String la, lb;

String out;
private int position_visible = -1;


ListViewAdapter(Context ctx, ArrayList<HashMap<String, String>> arraylist) {

this.ctx = ctx;
this.arraylist = arraylist;
}


@Override
public int getCount() {
return arraylist.size();
}

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

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

@Override
public View getView(int position, View convertView, ViewGroup parent) {
inflater = (LayoutInflater) ctx
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

View itemView = inflater.inflate(R.layout.listitem, parent, false);

a = (TextView) itemView.findViewById(R.id.a);
b = (TextView) itemView.findViewById(R.id.b);

tvPlaceName.setText(arraylist.get(position).get("a"));

a = arraylist.get(position).get("a");
b = arraylist.get(position).get("b");

if (position_visible == position) {
tvPlaceName.setBackgroundResource(R.color.divider);
tvTime.setBackgroundResource(R.color.divider);

} else {
tvPlaceName.setBackgroundResource(R.color.white);
tvTime.setBackgroundResource(R.color.white);
}

return itemView;
}

public void show(int position) { // show a delete button on swipe of list
// item position
position_visible = position;
notifyDataSetChanged();

}

}

我的列表.java :

private int posionClicked = -1;

lv = (ListView) findViewById(R.id.listView);



lv.setChoiceMode(ListView.CHOICE_MODE_SINGLE);


@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
posionClicked = arg2;
adapter.show(arg2);
}

列表.xml :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffffff"
android:orientation="horizontal">


<TextView
android:padding="5dp"
android:id="@+id/tvPlaceName"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:minLines="2"
android:gravity="center_vertical"
android:text="Large Text"
android:textStyle="bold"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#0052a5"
android:textSize="@dimen/font_large"
android:background="@color/white"/>


<TextView
android:background="@color/white"
android:padding="5dp"
android:id="@+id/tvTime"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="bottom"
android:text="Small Text"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="#0052a5" />


</LinearLayout>

-- 当用户选择 ListView 的任何一行时,它的背景颜色和字体颜色应该改变。

-- 欢迎所有建议。

最佳答案

这样做:

holder.view.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {

//Get the text View and set the font as shown below
TextView tv_the = (TextView) findViewById(R.id.the);
Typeface face = Typeface.createFromAsset(getAssets(), "condenced.ttf");
tv_the.setTypeface(face);

tv_the.setTextColor(Color.parseColor("#ffffff"));

//And set backgroundColor of whole item by following
holder.view.setBackgroundColor(Color.parseColor("#FF7A83"));
});
}

尝试一下,如果有效请告诉我。

关于android - 更改 ListView 中所选项目的背景颜色和字体颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36029390/

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