[第二已修改]android - 最後添加的項目佈局是垂直的。爲什麼? (改造)
我發現其中的問題是。但我不知道它爲什麼這樣做。它不能成爲LinearLayout的邊緣(或者僅僅是marginLeft)。有人知道它爲什麼不能擁有?
[EDITED]
你好我有像bellow.And IAM從任何XML佈局以水平的LinearLayout添加TextViews佈局xml文件。這個佈局結構是給定的,我不能改變它。 最後添加的TextView始終垂直。我不知道爲什麼我在tottaly絕望。太多小時我嘗試*,但不知不覺。我只知道它不是在編程中添加TextViews .. 如果有些身體知道爲什麼它會這樣做,我會感激。
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/back_border"
>
<RelativeLayout
android:id="@+id/manager_view_table_header"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
>
<LinearLayout
android:id="@+id/layout_for_textViews"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="6px"
android:layout_alignParentTop="true"
android:gravity="center_vertical"
android:background="@drawable/back_border"
>
<!-- horizontal layout, HERE IAM ADDING TEXTVIEWS -->
</LinearLayout>
</RelativeLayout>
<!--What is here its no important
because, there is RelativeLayout with alignBellow relative layout before -->
</RelativeLayout>
和TextView的女巫IAM addig到的LinearLayout:
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="15sp"
android:paddingRight="7px"
android:paddingLeft="7px"
android:paddingTop="3px"
android:paddingBottom="3px"
android:layout_marginLeft="5px"
android:gravity="center_horizontal"
android:background="@drawable/background_table"
android:textColor="#330033"
android:text="Some text"
/>
爲什麼你有三個封閉的佈局? – Malcolm 2012-02-23 17:02:06
你在談論什麼ListView?我沒有在您發佈的xml中看到一個。 – Turnsole 2012-02-23 17:03:32
索裏..沒有的ListView但是TextView的。他們被封閉,因爲它只是我的主XML的一部分。其他的東西並不重要,我的意思是。 Sory爲我的糟糕的問題。我去改寫它..看到上面後在 – Juraj 2012-02-23 19:27:28