我想通过TextView传递将在运行时生成的值。 text属性用于其他一些数据,我想要传递的数据不会显示。所以,它就像一个隐藏的标签。是否可以使用TextView?如果是这样,TextView的哪个属性。
为简单起见,我想从数据表中提取ID和TEXT。现在TEXT显示在TextView上,但是当我想将对该表的特定行的引用传递给其他函数时,我想将ID作为参数/句柄传递。因此,ID将被隐藏并与TextView相关联。我该怎么做?如果不可能,您可以建议任何替代方案来实现这一目标顺便说一下,TextView嵌入在ListView中。
适配器代码:
cursor = db.rawQuery("SELECT * FROM EmpTable", null);
adapter = new SimpleCursorAdapter(
this,
R.layout.item_row,
cursor,
new String[] {"Emp_Name"},
new int[] {R.id.txtEmployee});
答案 0 :(得分:42)
尝试setTag(int, Object)和getTag(int)。如果您只想存储一个值,甚至还有一些不带密钥的版本。来自文档:
设置与此关联的标记 视图。标签可用于标记视图 在其层次结构中,而不是必须 在层次结构中是唯一的。标签 也可以用来存储数据 一种不依赖于另一种观点的观点 数据结构。
所以你可以这样做:
textView.setTag(myValue);
稍后通过以下方式取回:
myValue = textView.getTag();
由于界面使用Object
,您需要添加强制转换。例如,如果您的值为int
:
textView.setTag(Integer.valueOf(myInt));
和
myInt = (Integer) textView.getTag();
编辑 - 要创建子类并添加标记,请使用:
adapter = new SimpleCursorAdapter(this, R.layout.item_row,
cursor, new String[] {"Emp_Name"}, new int[] R.id.txtEmployee}) {
@Override
public View getView (int position, View convertView, ViewGroup parent) {
View view = super.getView(position, convertView, parent);
view.setTag(someValue);
return view;
}
};
答案 1 :(得分:6)
您可以使用setTag()
和getTag()
。
答案 2 :(得分:3)
执行此操作的一种方法是让ListAdapter为列表中的每个项目为布局而不是TextView充气。然后,您可以在布局中隐藏其他(不可见)字段。
xml可能如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:id="@+id/visible_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Visible text"/>
<TextView android:id="@+id/hidden_value"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hidden value"
android:visibility="gone"/>
</LinearLayout>