代码之家  ›  专栏  ›  技术社区  ›  Mudassir

Android中的对齐

  •  0
  • Mudassir  · 技术社区  · 14 年前

    多谢提前。

    2 回复  |  直到 14 年前
        1
  •  1
  •   Sankar Ganesh PMP    14 年前
    <?xml version="1.0" encoding="UTF-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_height="fill_parent" 
        android:layout_gravity="fill_horizontal" android:layout_width="fill_parent"
          android:orientation="horizontal">
            <TextView android:id="@+id/header_text1" android:layout_width="wrap_content"
            android:layout_height="wrap_content" 
            android:textSize="20sp" android:textStyle="bold" android:textColor="@color/white"
            android:layout_marginLeft="70dp" 
            android:layout_centerHorizontal="true" android:layout_centerVertical="true"
            android:singleLine="true" />
            <ImageView android:src="@drawable/image_button1" android:id="@+id/back"
            android:layout_width="wrap_content" android:layout_height="wrap_content"
            android:layout_centerVertical="true" android:layout_toRightOf="@+id/header_text1" />
    

        2
  •  1
  •   Robert    14 年前

    使用RelativeLayout并使用android:layout_align=“widgets(view元素)的参数。有相对于父视图以及其他视图元素的对齐指令。