I've built a widget that uses a LinearLayout and I've put two TextViews in the layout. The gravity of the layout is "top".
The problem is that I get a space between the two TextViews and I can't get rid of it.
    <TextView 
        android:id="@+id/Text01"
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:gravity="bottom|center_horizontal" 
        android:text="blah blah"
        android:background="@android:color/transparent"
        android:textColor="#3e6eb4"
        android:textSize="11sp"
        />        
    <TextView 
        android:id="@+id/text02"
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:gravity="top|center_horizontal" 
        android:text=""
        android:background="@android:color/transparent"
        android:textColor="#3e6eb4"
        android:textSize="14sp"
        android:padding="0sp"
        android:verticalSpacing="0sp"
        />
As you can see I tried putting padding 0 and verticalSpacing 0 but I still get a space between them.
How can I fix it?
Thanks.
 
     
     
    