TextView作为项目添加到选择器中 - 可以这样做吗?

时间:2014-11-12 07:55:01

标签: android xml selector

因此,正如标题所述:我可以在选择器内的项目中添加TextView吗?

我将发布我得到的代码并评论我想要实现的目标。

注意:为简单起见,请使用" //"进行评论即使是XML。

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

   <item  android:state_activated="true" 
      android:drawable="@drawable/var0"> 
   </item>

   <item  android:state_activated="false" 
      android:drawable="@drawable/var1"> 
   </item>

  //Here I want the textView to be added ,so that it will be added on top of the other two tings I have got right here^^
  //So I suppose it is an item
  <item>
     //How do I give this item the resource of a textView or perhaps add the textView right here?
  </item>
</selector> 

通过这个问题需要一些指导,因为我没有在互联网上找到这方面的内容。

任何建议都非常感谢! 如果需要更多信息,请发表评论,但我无法链接大部分代码,因为我必须遵守保密协议。

0 个答案:

没有答案