I am developing an android application that needs to have this kind of text formatting, For this i am using shadowcolor in textview shown in below code but i didn't able to achieve exactly. Any Help will be appreciated. Here is my Textview code:
<TextView
android:id="@+id/textpage"
android:textAlignment="center"
android:layout_marginLeft="@dimen/book_page_text_view_margin"
android:layout_marginRight="@dimen/book_page_text_view_margin"
android:gravity="bottom|center_horizontal"
android:text="Lorem Ipsum is simply dummy text of the printing and typesetting industry. "
android:textColor="#050505"
android:textSize="16sp"
android:layout_height="match_parent"
android:layout_width="match_parent"
local:MvxBind="Text PageText"
android:layout_marginBottom="2dp"
android:layout_marginTop="20dp"
android:shadowColor="#ffffff"
android:shadowDx="-1"
android:shadowDy="-1"
android:shadowRadius="3"
android:textStyle="bold"
android:fadingEdge="horizontal"
android:scrollHorizontally="true" />
Here is the image showing required text style in rectangle area