我有一个标题,它是一个线性布局,有一个文本视图和一个图像视图。
< LinearLayout
<TextView
android:layout_weight="8"
...
/ >
<ImageView
android:layout_weight="2"
...
/>
< /LinearLayout >
在纵向模式下,一切都很完美,但在横向模式下,由于标题的大小增加,图像视图向左移动了一点。
无论方向如何,我都希望能够将图像视图固定到标题的右侧。
有没有办法做到这一点?