I have a TextView in a layout xml file like this:
<TextView
android:id="@+id/viewId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/string_id" />
My string is specified like this:
<string name="string_id">text</string>
Is it possible to make it display "Text" instead of "text" without java code?
(and without changing the string itself either)
No. But you can create a simple CustomView extending TextView that overrides setText and capitalizes the first letter as Ahmad said like this and use it in your XML layouts.