0

私はFragmentActivity2 を保持する必要がありFragmentsます。各フラグメントには、テーブルを含む独自のレイアウトがあります。FragmentActivityXML ファイルから読み取ったデータを配置するには、フラグメントのレイアウトからテーブルにアクセスする必要があります。私の問題は、私が使用するときです

tableOrders = (TableLayout)findViewById(R.id.tabel1);

戻りますnull。これで、レイアウトのアイテムは、インフレートされる前にのみアクセスできることがわかりました。呼び出しを試みる前に FragmentActivity でそれを行いましたfindViewById()。私が試したコードは次のとおりです。


FragmentHolder.javaから派生した の onCreate FragmentActivity:

    private TableLayout tableOrders = null;
   private TableLayout tableExecutions = null;

    @Override
    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_fragment_holder);
    initialisePaging();

    //View orderFragment = (View)findViewById(R.layout.fragment_orders);        
    tableOrders = (TableLayout)/*orderFragment.*/findViewById(R.id.tabel1);
    //View execFragment = (View)findViewById(R.layout.executions_fragment);
    tableExecutions = (TableLayout)/*execFragment.*/findViewById(R.id.tabel2);

    Intent intent = getIntent();
    Bundle bundle = intent.getExtras();

    if(bundle != null)
        logedUser = (User) bundle.getSerializable("user");

    AssetManager am = getApplicationContext().getAssets();

    String xmlContentOrders = XMLfunctions.getXml(am, "ordersData.xml");
    populateOrdersTable(xmlContentOrders);

    String xmlContentExecutions = XMLfunctions.getXml(am, "executionsData.xml");
    populateExecutionsTable(xmlContentExecutions);
}

フラグメントクラス(役立つかどうかわかりません):

    public class OrdersFragment extends Fragment {
    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
     super.onActivityCreated(savedInstanceState);
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
     View view = inflater.inflate(R.layout.fragment_orders, container, false);
     return view;
    }
    }


フラグメントクラス(役立つかどうかわかりません):

   public class OrdersFragment extends Fragment {
    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
     super.onActivityCreated(savedInstanceState);
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
     View view = inflater.inflate(R.layout.fragment_orders, container, false);
     return view;
    }
    }

フラグメントの .xml ファイル:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >


<TableLayout
    android:id="@+id/tabel1header"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@color/tablebgcolor" >

    <TableRow  >

        <TextView
            android:id="@+id/ordersHeader"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            android:layout_weight="1"
            android:text="@string/orders"
            android:textStyle="bold"                />
    </TableRow>

    <TableRow
        android:id="@+id/ordersTable"
        style="@style/HeaderRow" >

        <TextView
            android:id="@+id/textSymbol"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/symbol"
            style="@style/HeaderText" />

        <TextView
            android:id="@+id/textSide"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/side"
            style="@style/HeaderText" />

        <TextView
            android:id="@+id/textPrice"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/price"
            style="@style/HeaderText" />

        <TextView
            android:id="@+id/textQuantity"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/quantity" 
            style="@style/HeaderText"/>

        <TextView
            android:id="@+id/textRemaining"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/remanent"
            style="@style/HeaderText" />
    </TableRow>
</TableLayout>

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1" >

    <TableLayout
        android:id="@+id/tabel1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" 
        android:background="@color/tablebgcolor">
    </TableLayout>
</ScrollView>

</LinearLayout>

そうは言っても、誰かがこれに対する解決策を持っていることを願っています(おそらく、私が見逃したのは簡単なことです)。


編集:フラグメントを FragmentActivity に配置するために使用するコード:

private void initialisePaging() {

    OrdersFragment fragmentOne = new OrdersFragment();
    ExecutionsFragment fragmentTwo= new ExecutionsFragment();

    PagerAdapter pagerAdapter = new PagerAdapter(getSupportFragmentManager());
    pagerAdapter.addFragment(fragmentOne);
    pagerAdapter.addFragment(fragmentTwo);

    ViewPager viewPager = (ViewPager) super.findViewById(R.id.viewPager);
    viewPager.setAdapter(pagerAdapter);
    viewPager.setOffscreenPageLimit(2);
    viewPager.setCurrentItem(0);
}
4

0 に答える 0