Sunday, January 1, 2012

Android : Text View Widget

in main.xml
<TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello"
        android:visibility="invisible"
      />
edit the android:text
open res/values/strings.xml
add this : 
 <string name="hello">some text here</string>
android:visibility 
ConstantValueDescription
visible0 Visible on screen; the default value.
invisible1 Not displayed, but taken into account during layout (space is left for it).
gone2 Completely hidden, as if the view had not been added.








No comments:

Post a Comment