放置一个布局的项目,不显示按钮栏



我有一些问题与标记布局,我没有显示按钮栏,虽然它是在代码xml。请解决我的问题。

这是我的代码:

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/imageQuote"
    android:layout_marginTop="10dp"
    android:layout_centerHorizontal="true" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceMedium"
    android:text="Description"
    android:id="@+id/descriptionOfQuote"
    android:layout_below="@+id/imageQuote"
    android:layout_marginTop="10dp"
    android:layout_centerHorizontal="true"
    android:foregroundGravity="center"
    android:textSize="22dp"/>
<LinearLayout
    android:id="@+id/buttonBar"
    android:layout_marginBottom="1dp"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:foregroundGravity="center"
    android:gravity="bottom"
    >
    <ImageButton
        android:layout_width="85dp"
        android:layout_height="match_parent"
        android:id="@+id/arrow_left"
        android:src="@drawable/arrow_left"
        android:background="?android:selectableItemBackground"/>
    <ImageButton
        android:layout_width="85dp"
        android:layout_height="match_parent"
        android:id="@+id/btn_copy"
        android:src="@drawable/copy"
        android:background="?android:selectableItemBackground"/>
    <ImageButton
        android:layout_width="85dp"
        android:layout_height="match_parent"
        android:id="@+id/btn_share"
        android:src="@drawable/share"
        android:background="?android:selectableItemBackground"/>
    <ImageButton
        android:layout_width="85dp"
        android:layout_height="match_parent"
        android:id="@+id/arrow_right"
        android:src="@drawable/arrow_right"
        android:background="?android:selectableItemBackground"/>
</LinearLayout>

输入图片描述

如何使按钮栏在屏幕的底部?

我有两条线索可以解决你的问题:

1)使LinearLayout方向水平:

<LinearLayout
android:id="@+id/buttonBar"
android:layout_marginBottom="1dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:foregroundGravity="center"
android:gravity="bottom"
android:orientation="horizontal"
>

2)我不确定,但可能有一个问题与buttonBar的子高度,尝试将其设置为宽度:

<ImageButton
    android:layout_width="85dp"
    android:layout_height="85dp"
    android:id="@+id/arrow_left"
    android:src="@drawable/arrow_left"
    android:background="?android:selectableItemBackground"/>

我实际上没有Android Studio来检查我的答案是否正确,抱歉:(

相关内容

  • 没有找到相关文章

最新更新