In my development i am placing three Textviews inside the Tablerow, those Texviews are giving some top margins due to that reason some lower case letter warping the content because Textviews are overflowing the Tablerow. Please suggest me the proper solution.
Thanks in advance.
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:orientation="vertical" >
<TableRow
android:background="#f0f"
android:id="@+id/tr_abspath"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Path"
style="@style/TextViewStyle.buddyNameTxt" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:text=":"
android:textColor="#333" />
<TextView
android:background="#ff0"
android:id="@+id/tv_abspath"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:includeFontPadding="false" android:text="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.jpg"
android:textColor="#666" />
</TableRow>
</TableLayout>