I am very new to android app development.In the below code, I am using TableLayout to place my contents but getting some extra spaces in table row. Please suggest how to remove it.
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="DataStage 8.5"
android:id="@+id/textViewDS8.5"
android:layout_column="0"
android:textStyle="bold|italic"
android:textColor="#090909"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</TableRow>