Android Layout left and right align in horizontal layout

后端 未结 7 573
傲寒
傲寒 2021-01-03 21:01

I am have a ImageView and a ImageButton. I have them next to each other in a horizontal layout. I am trying to make it so that the image is left aligned on the screen, and t

相关标签:
7条回答
  • 2021-01-03 21:37

    Use This example if you want to use LinearLayout without giving Weight

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
    >
    
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="left"
           />
    
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:gravity="right"
            />
        </LinearLayout>
    
    0 讨论(0)
  • 2021-01-03 21:40

    Another approach for LinearLayout, using layout_weight and gravity:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <Button
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:text="BUTTON 1"/>
        <Button
            android:id="@+id/button2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:text="BUTTON 2" />
    </LinearLayout>
    
    0 讨论(0)
  • 2021-01-03 21:41
    <RelativeLayout 
    android:id="@+id/linearLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    
    >
    
    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="left"
    
        android:layout_alignParentLeft="true"
        android:src="@drawable/short_logo" />
    
    <ImageButton
        android:id="@+id/terminateSeed"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:background="@null"
        android:src="@drawable/unregister_icon" />
    </RelativeLayout >
    
    0 讨论(0)
  • 2021-01-03 21:44

    Use...

     <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"
        android:weightSum="1.0" >
    
    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="left"
        android:layout_marginRight="80dp"
        android:layout_weight="0.5"
        android:gravity="left"
        android:src="@drawable/ic_launcher" />
    
    <ImageButton
        android:id="@+id/terminateSeed"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.5"
        android:gravity="right"
        android:layout_marginLeft="80dp"
        android:background="@null"
        android:src="@drawable/ic_launcher" />
    </LinearLayout>
    
    0 讨论(0)
  • 2021-01-03 21:45

    Make imageview and imagebutton wrap_content and set layout_gravity to left and right accordingly.

    0 讨论(0)
  • 2021-01-03 21:53
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
    
        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:src="@drawable/ic_launcher" />
    
        <Button
            android:id="@+id/button1"
            style="?android:attr/buttonStyleSmall"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:text="Button" />
    
    </RelativeLayout>
    
    0 讨论(0)
提交回复
热议问题