Google I/O の Android ダッシュボード パターンをフラグメントとして使用して、タブレットのランドスケープ モードでダッシュボードが左側に表示され、現在のカテゴリのコンテンツが右側に表示されるようにすることは可能ですか?
以下のコードのようなものを試しましたが、うまくいきません。
main.xml:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Include dashboard -->
<include layout="@layout/fragment_dashboard"/>
<!-- Include details -->
<fragment
android:id="@+id/fragment_details"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.example.fragments.Details" />
</LinearLayout>
詳細.java:
public class Details extends Fragment
{
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
{
View view = inflater.inflate(R.layout.details, container, false);
return view;
}
}