I have a TextView created in xml e.g.
<TextView
android:id="@+id/hello_world_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
and my strings.xml file has the property
<string name="hello_world">Hello World!!!</string>
Is there any way to get programmatically the resource name (in my example "hello_world") from the TextView?