0

私はPanesLibraryの新しいユーザーですが、アプリの起動時にバックグラウンドで個人用レイアウトを表示する方法がわかりません。コードは、自動生成されたフラグメントとサンプル フラグメントのない github の例に似ています。

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setPaneSizer(new ExamplePaneSizer()); //inner class like on the github example

    // Lets setup a menu and a first pane!
    if (savedInstanceState == null) {
        Fragment menu = new CatFragment(); //show list of categories
        setMenuFragment(menu);
    }
}

そして、これは ExampleActivity のレイアウトです:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".SandboxActivity" >

<com.mapsaurus.paneslayout.PanesLayout
    android:id="@+id/panes"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1" 
    >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="Some Text"
        android:textAppearance="?android:attr/textAppearanceLarge" />

</com.mapsaurus.paneslayout.PanesLayout>

問題は、TextView が表示されていないことです。ありがとう!

4

1 に答える 1

0

解決しました。新しいフラグメントを追加するだけです

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setPaneSizer(new ExamplePaneSizer());
    // Lets setup a menu and a first pane!
    if (savedInstanceState == null) {
        Fragment menu = new CatFragment();
        Fragment instr = new InstructionFragment();
        setMenuFragment(menu);

        addFragment(menu, instr);
于 2013-12-11T17:44:36.067 に答える