2012-12-27 77 views
-1

請看看下面的代碼中心在頂部

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context=".DisplayResult" > 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:orientation="horizontal" 
     android:layout_gravity="center" 
     android:gravity="center" 
     > 

     <ImageView 
      android:id="@+id/zodiac1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:src="@drawable/aries" 
      /> 

     <TextView 
      android:id="@+id/orTxt" 
      android:text="Or" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 

      /> 

     <ImageView 
      android:id="@+id/zodiac2" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:src="@drawable/gemini" 
      /> 

    </LinearLayout> 




    </ScrollView> 

我想這個「的LinearLayout」在頂部居中。不在設備屏幕的中心。我該怎麼做?請幫忙!

編輯

我的意思是,我想線性佈局裏面的東西在應用程序的頂部出現。他們應該集中在這個空間。如果我使用RelativeLayout的,這是我做

android:layout_centerHorizontal="true" 
android:layout_alignTop="true" 
+1

你怎麼在上面的意思是中心?你能向我們展示一幅圖像嗎? – rasen58

+0

你能展示你想要達到的目標嗎?它目前的外觀如何? –

回答

2

如果你想複製的RelativeLayout的alignTop,嘗試:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context=".DisplayResult" > 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:orientation="horizontal" 
     android:gravity="center_horizontal" > 
+2

使用'android:gravity =「center_horizo​​ntal」'可能會更好。 –

+0

ScrollView包含一個設置爲水平的LinearLayout,這個佈局有兩個ImageViews和一個TextView ...我不確定''center_horizo​​ntal「'會做任何事情,但它已經包含在''center''中。如果Sepala澄清他/她想要什麼,我會很樂意調整我的答案。 – Sam

+0

你好,山姆,問題被編輯。請看看 –