膨大なコード ダンプで申し訳ありませんが、本当に迷っています。
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のデザインプレビューではOKです。root_view
フラグメントとして追加された場合にのみ、FrameLayout
画面全体を埋めません。
root_container
は青色で、FrameLayout
黄色がかっています。デバッグ目的については以下を参照してください。黄色のペインが画面全体に表示されるべきではありませんか?!?!?!?