程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-Fragment UI不能顯示的問題

android-Fragment UI不能顯示的問題

編輯:編程綜合問答
Fragment UI不能顯示的問題

Activity Layout : activity_text_entry.xml

<?xml version="1.0" encoding="utf-8" ?>
<FrameLayout
           xmlns:android="http://schemas.android.com/apk/res/android"
           android:layout_height="match_parent"
           android:layout_width="match_parent"
           android:id="@+id/fragmentContainer_TextEntry"
           />

Fragment Layout : fragment_text_entry.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"
     >

<EditText
     android:id="@+id/Text_Entry_Date"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:hint="@string/choose_date_text"
     android:layout_marginLeft="16dp"
     android:layout_marginRight="16dp"

     />
 <requestFocus />

<EditText
     android:id="@+id/Text_Entry_Title"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:hint="@string/choose_title_text"
    android:layout_marginBottom="16dp"
    android:layout_marginLeft="16dp"
    android:layout_marginRight="16dp"
    android:layout_marginTop="16dp" >


     </EditText>

<EditText
    android:id="@+id/Text_Entry_Content"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="16dp"
    android:layout_marginLeft="16dp"
    android:layout_marginRight="16dp"
    android:layout_marginTop="16dp"
    android:ems="100"
    android:gravity="left|top"
    android:hint="@string/enter_text_here"
    android:inputType="textMultiLine" >


</EditText>

<LinearLayout 
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:orientation="horizontal"
    android:gravity="center|bottom"
    >

    <Button
        android:id="@+id/Text_Entry_Button_Save"
        android:text="@string/action_Save"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="10dp" />

    <Button
        android:id="@+id/Text_Entry_Button_Cancel"
        android:text="@string/action_Cancel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="10dp" />

</LinearLayout>

</LinearLayout>

Activity : TextEntryActivity

package com.app.journal_v001;

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.widget.Toast;

public class TextEntryActivity extends FragmentActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_text_entry);


        FragmentManager m_fm_text_entry_activity = getSupportFragmentManager();

        Fragment m_f_text_entry_activity = m_fm_text_entry_activity.findFragmentById(R.id.fragmentContainer_TextEntry);

        if(m_f_text_entry_activity == null)
        {

            m_f_text_entry_activity = new Fragment();

            m_fm_text_entry_activity.beginTransaction()
                                    .add(R.id.fragmentContainer_TextEntry, m_f_text_entry_activity)
                                    .commit();
        }
    }
}

我想從 TextEntryActivity(activity) 中呈現 TextEntryFragment(fragment)。 我在不同的地方都保存了一系列的 toasts 來跟蹤。我看代碼執行到 FragmentManager 的FragmentTransaction,但是然後沒有調用 Fragment 的 onCreate/onCreateView。
哪裡出錯呢?為什麼 fragment UI 不顯示?

最佳回答:


你並沒有把fragment加入到activity_text_entry.xml的framelayout裡
形如:

 <fragment class="com.xxx.xxFragment" android:id="@+id/id" android:layout_weight="1"
        android:layout_width="0px" android:layout_height="match_parent"
        />
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved