對不起,代碼轉儲巨大,但我真的迷失了。Android Fragment不尊重match_parent作爲高度
MyActivity.java的onCreate:
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_singlepane_empty);
mFragment = new PlacesFragment();
getSupportFragmentManager().beginTransaction()
.add(R.id.root_container, mFragment)
.commit();
PlacesFragment.java onCreateView:
mRootView = (ViewGroup) inflater.inflate(R.layout.list_content, null);
return mRootView;
注意:mRootView是關於它的ViewGroup中全球性的,沒有問題,我相信。 PlacesFragment是一個ListFragment。
佈局:
activity_singlepane_empty.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/root_container"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#00f">
<include layout="@layout/actionbar"/>
<!-- FRAGMENTS COME HERE! See match_parent above -->
</LinearLayout>
list_content.xml:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/listContainer"
android:background="#990"
>
<ListView android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:drawSelectorOnTop="false" />
<TextView android:id="@id/android:empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="@string/no_data_suggest_connection"/>
</FrameLayout>
問題:你可以看到,預期的行爲將有空上面的TextView在屏幕上居中顯示。在Eclipse中的設計預覽中,它是可以的。只有在作爲片段添加到root_view時,FrameLayout纔會填滿整個屏幕。
root_container是藍色的,FrameLayout是淡黃色的,請參閱下面的調試目的。 黃色窗格不應該填滿整個屏幕嗎?!?!?!?
如果你使用ScrollView checkout這個:http://stackoverflow.com/questions/10211338/view-inside-scrollview-doesnt-take-all-place –