<LinearLayout
android:id="@+id/layout_information"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="0.17"
android:gravity="center"
android:orientation="horizontal" >
<TextView
android:id="@+id/text_view_destination"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="\@ Home in"
android:textColor="@color/solid_white"
android:textSize="19sp"
android:textStyle="bold"
android:layout_gravity="bottom"
/>
<TextView
android:id="@+id/text_view_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="30dp"
android:textColor="@color/solid_white"
android:textSize="25sp"
android:textStyle="normal"
android:layout_gravity="bottom"
/>
</LinearLayout>
我想将两个文本视图垂直居中,
但我希望它们与底部的一条线对齐。
现在它们排成一条线,
但它们位于父布局的底部。
我怎样才能做到这一点?
我曾想过用另一个布局(“parent2”)包装他们当前的布局父级(“parent1”)
并使“parent1”位于“parent2”的中心。
有没有其他不添加元素的方法?