Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a simple Layout file. What's happening basically is that empty TextView is not appearing(without setting its Text property). This issue is encountered only in version 3.0,3.1 and 3.2 OS. Empty TextView is not occupying its space or in other words empty textview is not visible.

Empty textview is visible after setting following properties.

  1. android:focusable="false"
  2. android:focusableInTouchMode="false"
  3. android:clickable="true"
  4. android:inputType="text"

What can I do to make it visible? Please respond ASAP.

share|improve this question
Empty text view cannot be visible, it is there but it cannot be visible unless you set a background or some text to it which is in contrast to the background. – user3 Jan 4 at 8:59
@Chronically Insane- that i know when empty textview has a same background color it will not display. But this is happened only in 3.0 to 3.2 OS versions. It left its space from layout. – user622578 Jan 8 at 4:58
Please post your code and if there is any error on the logCatty! – user3 Jan 8 at 5:33
there is no need to post code. To examine that just make one demo project with 3.1 api. And just place one textview and remove its text on layout. You can see my problem also in Graphical layout by selecting android os version 3.1. When os version is 3.1 then u will not see empty textview on layout. – user622578 Jan 8 at 12:22
11  
"there is no need to post code" -- yes, there is. "To examine that just make one demo project with 3.1 api" -- your job is to make it easy for people to help you. Supplying sample code, particularly a full project, that demonstrates the error is one way to do that. Supplying screenshots indicating the difference in behavior is another way to do that. – CommonsWare Jan 10 at 14:13
show 4 more comments

2 Answers

I suppose you need it to keep row height in layout. The simplest solution, I think, would be to set whitespace as a text for all TextViews in xml.

 android:text=" "
share|improve this answer
I think this not a right way to get solution. – user622578 Jan 11 at 7:49
What do you mean? It doesn't work? – pawelzieba Jan 11 at 11:33

Have you tried to set the visibility property explicitly?:

android:visibility="visible"

The visible property can be:

  • "visible" = showing
  • "invisible" = not showing yet still taking space in the layout
  • "gone" = not showing and not taking space in the layout.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.