So many people are think how to display the copyright symbol in your app.
we can display copyright symbol in app using Unicode definition in a string.
Just see this below example:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
tools:ignore="HardcodedText" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="\u00A9 2011 androidsurya.blogspot.in"
android:textSize="25dp" />
</RelativeLayout>
Output Screenshot:
we can display copyright symbol in app using Unicode definition in a string.
Just see this below example:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
tools:ignore="HardcodedText" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="\u00A9 2011 androidsurya.blogspot.in"
android:textSize="25dp" />
</RelativeLayout>
Output Screenshot:
