I have this xml:
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
  <TextView
      android:id="@+id/account_display_name"
      style="@style/AccountDataDisplayName"
      android:layout_width="wrap_content"
      android:layout_height="0dp"
      android:layout_weight="1"
      android:gravity="center_vertical"/>
  <TextView
      android:id="@+id/account_name"
      style="@style/AccountDataAccountName"
      android:paddingTop="-10dp"
      android:layout_width="wrap_content"
      android:layout_height="0dp"
      android:layout_weight="1"
      android:gravity="center_vertical"/>
</LinearLayout>
But I see when I change the paddingTop it doesn't effect the textView position. Why is that and how can i make the second textView higher positioned?