-1

在我的代码中,image1 显示在左侧,但图像 test_button_image2 没有在屏幕右侧移动,我该怎么办?这是我的截图

我想像这样

请帮助我如何在布局右侧移动 image2?

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ffffff"
    android:orientation="vertical" >


  <LinearLayout

   android:layout_width="fill_parent"
    android:layout_height="wrap_content"
   android:background="@drawable/imagelogo2"

   android:orientation="horizontal" >

    <ImageView
            android:id="@+id/test_button_image"
            android:layout_width="wrap_content"
            android:paddingLeft="5dp"
            android:layout_height="wrap_content"

            android:paddingTop="15dp"
            android:src="@drawable/back" >
        </ImageView>

       <ImageView
      android:id="@+id/test_button_image2"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"

      android:paddingLeft="5dp"
      android:paddingTop="15dp"
      android:src="@drawable/back" />

     </LinearLayout>

   <LinearLayout
        android:id="@+id/lytContent"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/txtCopyright"
        android:layout_marginTop="10dp"
         android:background="@drawable/border2" 
        android:layout_below="@+id/lytTitlebar"
        android:orientation="vertical" >



        <ListView
            android:id="@+id/listMainMenu"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"

            android:listSelector="@drawable/listview_selector"
            android:dividerHeight="1dip"
            android:fadeScrollbars="true" />
        </LinearLayout>



    </LinearLayout>
4

2 回答 2

0

这个布局有点乱,但从我所见:

  1. 您大学的徽标设置为布局的背景 ( android:background="@drawable/imagelogo2")。看来您需要将其移动到单独的 ImageView 中。

  2. 您有 2 个显示后退按钮的 ImageView。

  3. 请考虑使用边距而不是填充。我认为这将更适合您正在尝试做的事情。

于 2013-08-20T10:28:59.437 回答
0

尝试这个

机器人:layout_gravity="对"

于 2013-08-20T11:43:23.123 回答