屏幕右侧的ImageButton

时间:2017-03-19 12:54:17

标签: android android-layout

我想在屏幕右侧添加我的imagebuttom,如下所示:

Imageview textview                                              ImageButtom

问题在于我尝试了所有内容而且没有用。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#f5f5f5">

    <android.support.v7.widget.CardView
        xmlns:card_view="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        card_view:cardCornerRadius="0dp"
        android:id="@+id/card_view"
        android:layout_marginBottom="1dp"
        android:layout_marginEnd="0dp"
        android:layout_marginLeft="0dp"
        android:layout_marginRight="0dp"
        android:layout_marginStart="0dp"
        android:layout_marginTop="0dp">

        <LinearLayout
            android:paddingTop="10dp"
            android:paddingBottom="10dp"
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal" >


                <ImageView
                    android:layout_width="50dp"
                    android:layout_height="50dp"
                    android:id="@+id/ProfilePic"
                    android:paddingBottom="20dp"
                    android:paddingLeft="3dp"
                    android:adjustViewBounds="true" />

                <TextView
                    android:id="@+id/textViewName"
                    android:textStyle="bold"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:paddingBottom="20dp"
                    android:paddingLeft="1dp"
                    />

                <ImageButton
                    android:id="@+id/imageButton"
                    android:layout_width="20dp"
                    android:layout_height="30dp"
                    android:src="@mipmap/ic_launcher"
                    android:contentDescription="..."
                    android:background="@null"
                    android:layout_gravity="right|center" />

            </LinearLayout>

            <ImageView
...

如何在屏幕右侧添加我的ImageButtom?这是我的菜单。

谢谢你的朋友们!

3 个答案:

答案 0 :(得分:1)

您可以在ImageButton之前添加weight=1width=0dp的空格:

<LinearLayout ...>

<TextView .../>    

<Space
    android:layout_width="0dp"
    android:layout_height="1dp"
    android:layout_weight="1"/>

<ImageButton .../>   

</LinearLayout>

答案 1 :(得分:1)

尝试将layout_weight的{​​{1}}属性设置为1,以便在TextViewImageView之间占据整个空间:

ImageButton

<强>但是

我强烈建议您查看Menus

答案 2 :(得分:1)

尝试更改相对布局的线性布局,并设置android:layout_alignParentEnd =“true”

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#f5f5f5">

<android.support.v7.widget.CardView
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    card_view:cardCornerRadius="0dp"
    android:id="@+id/card_view"
    android:layout_marginBottom="1dp"
    android:layout_marginEnd="0dp"
    android:layout_marginLeft="0dp"
    android:layout_marginRight="0dp"
    android:layout_marginStart="0dp"
    android:layout_marginTop="0dp"><![CDATA[>
    ]]></android.support.v7.widget.CardView>

<LinearLayout
    android:paddingTop="10dp"
    android:paddingBottom="10dp"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">


    <ImageView
        android:id="@+id/ProfilePic"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:adjustViewBounds="true"
        android:paddingBottom="20dp"
        android:paddingLeft="3dp" />

    <TextView
        android:id="@+id/textViewName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingBottom="20dp"
        android:paddingLeft="1dp"
        android:textStyle="bold" />

    <ImageButton
        android:id="@+id/imageButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right|center"
        android:background="@null"
        android:contentDescription="..."
        android:src="@mipmap/ic_launcher"
        android:layout_alignBottom="@+id/ProfilePic"
        android:layout_alignParentEnd="true" />