我有LinearLayout
,其中包含大量TextViews
和ImageButtons
,我想将其中一些元素对齐,我看了this并且this但我无法使用他们的提示,因为我无法更改orientation
而无法生成android.gravity:right
,因为我不想将所有元素对齐,我不能将嵌套布局或所需元素用于RelativeLayout
,因为它将其余元素移到左边,我希望它们位于中心。
这是我的代码:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="0.15"
android:layout_marginTop="10dp"
android:layout_gravity="center"
android:gravity="center"
android:background="@drawable/media_mediabar"
android:orientation="horizontal" >
<ImageButton
android:id="@+id/move_backward"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:background="@android:color/transparent"
android:clickable="true"
android:scaleType="centerInside"
android:src="@drawable/media_button_rewind"
android:layout_marginLeft="7dp"
android:layout_marginRight="7dp"
android:tag="released"/>
<ImageButton
android:id="@+id/rmeote_mines"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:background="@android:color/transparent"
android:clickable="true"
android:scaleType="centerInside"
android:src="@drawable/remote_minus" />
<TextView
android:id="@+id/remote_plus_minus"
android:text="0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:layout_gravity="center"
android:layout_marginTop="15dp"
android:layout_marginBottom="15dp" />
.
.
.<!.. some other elements ..!>
</LinearLayout>
所需的结果:
答案 0 :(得分:28)
最简单的解决方案是使用权重作为分隔符的空视图。
<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<!-- Left button -->
<Button ...
... />
<View android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
<!-- Middle button -->
<Button ...
... />
<View android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
<!-- Right button -->
<Button ...
... />
</LinearLayout>
分隔符视图可以作为优化而不可见,因为它们不会绘制任何内容并且仅用于布局。您可以调整实际的'layout_weight'值以获得所需的布局。从API级别14开始,您可以使用Space的实例作为分隔符,这将提高性能和可读性(支持库中还有一个Space版本)。
答案 1 :(得分:6)
对于这种复杂的布局,您最好使用RelativeLayout
。
答案 2 :(得分:0)
i can't use nested layouts
然后你无法解决问题。
嵌套布局是Android布局的核心,要创建您想要的复杂视图,我认为您必须使用嵌套布局。
@Ridcully建议您使用RelativeLayout
,这是一个好主意。你可以将它与几个线性布局结合起来就可以了。
我认为RelativeLayout
应该是您的基本布局。