- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 ListView
其中每一行都有三个 TextView,显示有关名为 Medidor(Meter)的对象的信息。
我的问题是:如何在 onClick 事件发生时将整行标记为已选中?如果选中,我只需要使当前行的颜色变暗,否则恢复正常。
我考虑在包含对象的列表上使用 setOnItemClickListener(在我的 ArrayList<Medidor> medidores
上使用 Activity
,但我不知道它与 Adapter
的确切关系,特别是与 getView
方法的关系使其发挥作用。
这是我的适配器的代码:
public class ListaMedidoresAdapter extends BaseAdapter {
private ArrayList<Medidor> medidores;
private Activity activity;
private TextView codMedidor;
private TextView nombreMedidor;
private TextView obsLectMedidor;
static Long cod_medidor_seleccionado = 0L;
private static final Boolean COLORES_UBICS_ALTERN = false; //false para agrupar las ubicaciones en colores distintos para cada ubicación
private static final String[] colores_tabla = {"#770077","#002222","#228822","#881133","#602000","#202020","#6432c8","#c8323e","#32c870","#32a9c8","#c8b632","#c84f32","#383332","#6a7c68","#72687c","#590346","#5652c4","#404c33","#4a13ef","#ef6013",
"#724c12","#062307","#159fb5","#77797a","#107ea3","#a31010","#663c3c","#a00088","#383637","#662222","#224466","#5c748c","#8c875c","#5c8c80","#70962a","#3722f4","#a36758","#8e5518","#61188e","#af0150",
"#214add","#697293","#4f5466","#02686d","#2d026d","#7b6899","#50ba5f","#e85e27","#a4ba01","#ff0026"};
private static final String[] colores_altern = {"#2b7f4a","#7f2b30"};
private String color_seleccionado_conjunto = "";
private ArrayList<Integer> colores_seleccionados;
private Integer color_selecc;
private Context ctx;
ListaMedidoresAdapter(Activity activity, ArrayList<Medidor> listaMedidores, Context ctx){
super();
this.activity = activity;
this.medidores = listaMedidores;
this.ctx = ctx;
colores_seleccionados = new ArrayList<>();
color_selecc = 0;
}
@Override
public int getCount() {
return medidores.size();
}
@Override
public Medidor getItem(int i) {
return medidores.get(i);
}
@Override
public long getItemId(int i) {
return 0;
}
@SuppressLint("Range")
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = activity.getLayoutInflater();
if(convertView == null){
convertView = inflater.inflate(R.layout.fila_medidor,null);
codMedidor = convertView.findViewById(R.id.codigo_medidor);
nombreMedidor = convertView.findViewById(R.id.nombre_medidor);
obsLectMedidor = convertView.findViewById(R.id.estado_lects_medidor);
}
Medidor m = medidores.get(position);
nombreMedidor.setText(m.getNombre());
obsLectMedidor.setText(m.getLecturaStatus());
obsLectMedidor.setTextAlignment(View.TEXT_ALIGNMENT_CENTER);
if(m.getCodigo_medidor() == null){ //Es cabecera de ubicación
nombreMedidor.setTypeface(null, Typeface.BOLD);
if(COLORES_UBICS_ALTERN){ //Seleccionar alternadamente entre dos colores
codMedidor.setBackgroundColor(Color.parseColor(colores_altern[color_selecc]));
nombreMedidor.setBackgroundColor(Color.parseColor(colores_altern[color_selecc]));
obsLectMedidor.setBackgroundColor(Color.parseColor(colores_altern[color_selecc]));
color_selecc = (color_selecc == 0) ? 1:0;
} else { //Seleccionar un color al azar
color_seleccionado_conjunto = seleccionarColor();
codMedidor.setBackgroundColor(Color.parseColor(color_seleccionado_conjunto));
nombreMedidor.setBackgroundColor(Color.parseColor(color_seleccionado_conjunto));
obsLectMedidor.setBackgroundColor(Color.parseColor(color_seleccionado_conjunto));
}
} else { //Es un medidor
if(COLORES_UBICS_ALTERN){ //Seleccionar alternadamente entre dos colores
codMedidor.setBackgroundColor(Color.parseColor(colores_altern[color_selecc]));
nombreMedidor.setBackgroundColor(Color.parseColor(colores_altern[color_selecc]));
color_selecc = (color_selecc == 0) ? 1:0;
} else { //Seleccionar un color al azar
codMedidor.setBackgroundColor(Color.parseColor(color_seleccionado_conjunto));
nombreMedidor.setBackgroundColor(Color.parseColor(color_seleccionado_conjunto));
}
if(m.getCodigo_medidor() != null){
String codMedidorAbreviado = m.getCodigo_medidor().split(" ")[1] + m.getCodigo_medidor().split(" ")[2];
codMedidor.setText(codMedidorAbreviado);
}
switch (m.getLecturaStatus()){
case "S/L":
obsLectMedidor.setBackgroundColor(Color.RED);
break;
case "OBS":
obsLectMedidor.setBackgroundColor(Color.YELLOW);
break;
case "OK":
obsLectMedidor.setBackgroundColor(Color.GREEN);
break;
default:
obsLectMedidor.setBackgroundColor(Color.GRAY);
break;
}
}
TextView ubicacionMedidor = convertView.findViewById(R.id.ubicacionMedidorSelecc);
return convertView;
}
private String seleccionarColor(){
Integer ran_num=0;
Random ran = new Random();
Boolean new_ran = false;
while(new_ran == false){
ran_num = ran.nextInt(50);
Log.i("RAN",ran_num.toString());
Boolean yaSeleccionado = false;
if(colores_seleccionados.size() < 50) {
for (int i = 0; i < colores_seleccionados.size(); i++) {
if (colores_seleccionados.get(i) == ran_num) {
Log.i("COLORS", "Color seleccionado ya existe en posición " + ran_num.toString());
yaSeleccionado = true;
break;
}
}
new_ran = !yaSeleccionado;
} else { //Ya fueron todos los colores disponibles seleccionados, ahora sólo debe asegurarse que no elija el mismo color que la ubicación anterior
if(ran_num != colores_seleccionados.get(colores_seleccionados.size()-1)){
new_ran = true;
}
}
}
colores_seleccionados.add(ran_num);
Log.i("RAN_COLOR",colores_tabla[ran_num]);
return colores_tabla[ran_num];
}
}
颜色相关的东西为“行”选择背景颜色(通过 TextView 对象),以便在视觉上区分具有不同属性值(位置)的 Medidor 对象。
这是 fila_medidor.xml(三个 TextView 对象定义在一个“行”中):
<?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="match_parent">
<TextView
android:id="@+id/codigo_medidor"
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="0.15"
android:layout_marginBottom="0dp"
android:layout_marginTop="0dp"
android:textSize="14sp" />
<TextView
android:id="@+id/nombre_medidor"
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="0.7"
android:layout_marginBottom="0dp"
android:layout_marginTop="0dp"
android:textSize="14sp"/>
<TextView
android:id="@+id/estado_lects_medidor"
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="0.15"
android:layout_marginBottom="0dp"
android:layout_marginTop="0dp"
android:textSize="14sp"/>
</LinearLayout>
在我的 Activity 中,我有以下与 ListView - Adapter 相关的行:
ListaMedidoresAdapter adapter = new ListaMedidoresAdapter(this,arregloMedidores,this);
listaMedidores.setAdapter(adapter);
哪里arregloMedidores
类型为 ArrayList<Medidor>
.
为什么我没有选择 TableLayout
?因为在我看来,很难附加到像数组这样的动态数据源,而且它会消耗更多资源,因为它将所有 View 保存在内存中,这对于 1000 个条目可能是个问题。
提前谢谢你。
最佳答案
尝试添加行:android:background="@drawable/medidor_background"到你的 fila_medidor.xml LinearLayout
然后在 drawable 文件夹中创建一个新的 medidor_background.xml 文件,内容为:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_selected="true"
>
<shape>
<solid
android:color="#000000"
/>
</shape>
</item>
<item>
<shape>
<solid
android:color="#FFFFFF"
/>
</shape>
</item>
</selector>
关于android - 如何选择一个 ListView 行并突出显示它(几个 TextView)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47780761/
我之前在论坛上发布过这个,但我想我不太清楚。我有一个侧边栏 ListView 和一个包含我的控件的主面板。我想在 oncreate() 中突出显示 listview 中的 Activity 项,因为每
这里有没有人知道我如何通过 onTap() 扩展 ListView 项(在本例中为卡片)的内容 - 以显示更多选项?您知道那里有可以提供帮助的酒吧吗? 我已经看过了,但我不知道要搜索什么?我相信你们都
我的 ListView 控件有问题。我希望我的奇数行和偶数行具有不同的颜色,但我想通过代码而不是 FXML 来实现。例如: 第一行 - 绿色 第二行 - 红色 第三行 - 绿色 第四行 - 红色 现在
我有一个 ListView 。我想让单元格背景透明。目前,我正在做以下事情: .list-cell { -fx-background-color: transparent; } 但是,细胞的颜
我想创建一个几乎无限的元素列表,但我想将列表的初始位置设置为某个特定元素。像这张图片: 其中索引 0 将是初始位置,并且此列表可能会也可能不会在两个方向上延伸很长。 我可以像这样创建我的元素: W
有没有办法在JavaFX中获取ListView的可见项?我想确定 JavaFX 应用程序中 ListView 显示的第一个可见项。 以下代码found here不适合我(仅适用于 TableView)
开发人员。 我尝试在水平方向拉伸(stretch) ListView 项目。我确实重置了 ItemContainerStyle ,并且水平对齐是拉伸(stretch)的。这是 MainPage.xam
有没有办法在JavaFX中获取ListView的可见项?我想确定 JavaFX 应用程序中 ListView 显示的第一个可见项。 以下代码found here不适合我(仅适用于 TableView)
我想问一下: 我有一个预定义顺序的数组。 var order=new Array(); order[0]="Tesco"; order[1]="Interspar"; order[2]="
我希望创建以下内容:当到达内部 Listview 的顶部或底部时,我想继续在顶部 Listview 中滚动。见动图: Gif of what I got so far 一个选项是在到达底部时将内部 L
我正在尝试在 ajax 发布后刷新 jQuery 移动 ListView ,我一直在尝试使用 .trigger("create") 来执行此操作,如下所示: Most Played
我真的不明白是什么导致了错误我检查了文档,这里有一个非常相似的例子是我的 views.py,我使用的应用程序下的 urls.py 包含,以及模板 View .py class SchoolListVi
我有这个父布局 parent_listview 的列表项具有这种布局 child_listview 的项目有这个布局
我在单击列表项时获取 listview 项 时遇到问题。我得到了 simple listview(Arrayadapter) 的 listview item,但我遇到了 custom listview
我有一个工作正常的 DropdownMenu,但我需要一个 ListView,但我无法转换它。 DropdownMenu 如下所示: // Create the List of devices t
我想实现一个可滚动(垂直)且其中包含元素的屏幕。所以我把它放在 listview.builder 上。问题是,其中一个元素是另一个水平滚动的 listview.builder。当我实现它时,horiz
帮助!我想不通! 为了帮助我学习 SwiftUI,我正在使用 ListView 制作一个简单的杂货 list 应用程序。点击列表中的每个项目时,有些按钮会变成绿色或红色。 在我向列表数组中添加太多项目
所以我知道我们可以等待 ListView 加载,然后显示它。但是,如果我们动态加载正在下载的图像,ListView 将加载但图像尚未加载,因此它们不会出现在 ListView 中。 可接受的等待 Li
我是 Android 的新手,正在努力提高编程技能。 在这里,我有自定义 ListView 适配器类,我曾在其中显示 ListView 项目,如 TextView 、图像等。 我需要做的是,我在 Li
So, what I want is to individually disable a button for the concerned item in the ListView when clic
我是一名优秀的程序员,十分优秀!