1

是否可以将 Google I/O 中的 android 仪表板模式用作片段,以便在平板电脑的横向模式下,仪表板显示在左侧,而当前类别的内容显示在右侧?

我尝试了一些看起来像下面的代码但它不起作用的东西。

主.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;
        }

}
4

0 回答 0