I would like to create a TextView which displays current application version.
Is it possible to use manifest data (in this case versionName attribute) in XML resource file to achieve this? 
<TextView
    android:layout_width = "fill_parent"
    android:layout_height = "wrap_content"
    android:text = "(VERSION NAME)"
/>
 
     
    