如何在Android Honeycomb的列表视图中隐藏线

时间:2011-06-29 07:07:20

标签: android

我在那个应用程序中创建了一个应用程序,当我点击聊天图像时,我想隐藏这个bla bla bla行。

任何建议都是适当的。

提前感谢。

这是我的xml文件。

<RelativeLayout
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:id="@+id/task_list_frag_list_message_layout"
  android:background="#EBEBEB"
  android:layout_marginBottom="10dp"
  android:descendantFocusability ="blocksDescendants"
  android:layout_marginTop="10dp"
  android:layout_below="@+id/task_list_text"
  android:layout_marginLeft="80dp"
  >

   <TextView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:id="@+id/task_list_chat_persion1" 
    android:text="Mr. Test : " 
    android:textSize="18dp"
    android:layout_marginTop="13dp"
    android:textColor="@color/sky_blue_color"
    />
     <TextView android:textColor="@color/black_color"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:id="@+id/task_list_chat_text1" 
    android:text="A send you a data file kindly get it." 
    android:textSize="18dp"
    android:layout_marginTop="13dp"
    android:layout_toRightOf="@+id/task_list_chat_persion1" 
    />

     <TextView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:id="@+id/task_list_chat_persion2" 
    android:text="Mr. me : " 
    android:textSize="18dp"
    android:layout_marginTop="13dp"
    android:layout_below="@+id/task_list_chat_persion1" 
    android:textColor="@color/sky_blue_color"
    />
     <TextView android:textColor="@color/black_color"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:id="@+id/task_list_chat_text2" 
    android:text="I got the data file and i have some doubt in them" 
    android:textSize="18dp"
    android:layout_marginTop="13dp"
    android:layout_below="@+id/task_list_chat_persion1" 
    android:layout_toRightOf="@+id/task_list_chat_persion2" 
    />


  </RelativeLayout>

这两行是ij relative latout。enter image description here

2 个答案:

答案 0 :(得分:2)

我想你想要这个...... 只需要在聊天图像上添加onClick()事件,然后单击设置的TextView可见性,使其不被代码隐藏。

TextView _text= (TextView)findViewById(R.id.task_list_chat_text);
        _text.setVisibility(TextView.INVISIBLE);

答案 1 :(得分:1)

当你点击列表视图中的聊天按钮时,你应该将setTest =“”空白以删除它。 这可能是这个问题的解决方案。