-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 に答える