0

This is my code below, how do i remove space between 'back' button and logo of screen? my screen looks like this

enter image description here

and i want to make like this

enter image description here

Please help me

 <LinearLayout

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

 android:orientation="horizontal" >

 <ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
      android:background="@null"
    android:padding="15dp"
    android:paddingLeft="3dp"
    android:src="@drawable/back" />

 <RelativeLayout
    android:layout_width="0dp"
    android:layout_height="wrap_content"

    android:layout_weight="1" >

    <ImageView
        android:id="@+id/test_button_image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
          android:background="@null"
         android:paddingBottom="3dp"

        android:paddingTop="10dp"
        android:src="@drawable/imagelogo" >
    </ImageView>

    <TextView
        android:id="@+id/test_button_text2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/test_button_image"
        android:layout_toRightOf="@+id/test_button_image"
        android:paddingLeft="10dp"
        android:paddingTop="10dp"
        android:text="San Diego Unified"
        android:textColor="#000000"
        android:textSize="15sp" >
    </TextView>

    <TextView
        android:id="@+id/test_button_text1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/test_button_text2"
        android:layout_below="@+id/test_button_text2"
        android:paddingBottom="10dp"
        android:paddingLeft="10dp"
        android:text="School District"
        android:textColor="#000000" >
    </TextView>
 </RelativeLayout>

 <ImageView
    android:id="@+id/imageView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:paddingTop="15dp"
    android:paddingRight="10dp"
    android:src="@drawable/options" />
   </LinearLayout>
4

2 回答 2

0

1) 将 Content 设置为 LinearLayout 并设置孩子的权重值。

2) 设置 ImageViews 的您的 textViews 周围的边距。(最好的方法-> 将其保存到尺寸文件)

于 2013-08-20T08:58:40.050 回答
0

使您的主布局成为RelativeLayout 而不是LinearLayout。然后,您可以使用 android:layout_centerInParent 定位您的中心 RelativeLayout(带有徽标和 2 个文本字段)。之后,您可以将后退按钮垂直对齐到左侧,将菜单按钮垂直对齐到中心布局的右侧

于 2013-08-20T08:58:42.173 回答