I am analyzing an example with a vertical TextView http://developer.alexanderklimov.ru/android/views/verticaltextview.php
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <ru.alexanderklimov.test.RotateTextView android:id="@+id/rotateTextView1" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#00ff00" /> </LinearLayout> Everything works on LinearLayout, but I need a more complex layout where RelativeLayout is used and here I am getting text clipping, how to fix it?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <ru.alexanderklimov.test.RotateTextView android:id="@+id/rotateTextView1" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#00ff00" /> </RelativeLayout> 
