在我的代码中,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>
答案 0 :(得分:0)
这种布局有点混乱,但我可以看到:
您的大学徽标被设置为布局的背景(android:background="@drawable/imagelogo2"
)。您似乎需要将其移动到单独的ImageView中。
您有2个显示后退按钮的ImageView。
请考虑使用边距而不是填充。我认为这更适合你想要做的事情。
答案 1 :(得分:0)
试试这个
机器人:layout_gravity = “右”