1

这与几篇文章有关,但我没有看到任何解释视图层次结构中视图创建顺序的内容(静态 - xml 和动态 - 在代码中)。

我有一个 FragmentActivity 托管一个 Activity 和一个 Fragment。在调用片段的 onCreateView 之前,我从没有为片段创建的视图中收到运行时错误。很难确定调用方法是什么找不到视图,因为调试器在单步执行期间似乎无法找到正确的行号。

我无法正确附加源以查看 FragmentManager 内部,因为 dl'd 源和 .jar 之间似乎不匹配

我在 StreamingActivity.onCreateView 中放置了一个 Log.i 条目,并且在此之前发生了错误。

这是相关的LogCat:

07-19 10:13:36.091: I/StreamingActivity(9886): onCreate
07-19 10:13:42.271: W/dalvikvm(9886): threadid=1: thread exiting with uncaught exception (group=0x40020560)
07-19 10:13:42.281: E/AndroidRuntime(9886): FATAL EXCEPTION: main
07-19 10:13:42.281: E/AndroidRuntime(9886): java.lang.RuntimeException: Unable to start activity   
ComponentInfo{kesten.fragmentstestbed/kesten.fragmentstestbed.FragmentsMainActivity}:        
java.lang.IllegalArgumentException: No view found for id 0x7f05002e for fragment 
StreamingActivity{4052f810 #0 id=0x7f05002e}
caused by
java.lang.IllegalArgumentException: No view found for id 0x7f05002e for fragment 
StreamingActivity{40530948 #0 id=0x7f05002e}
at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:865)

我的java文件片段:

public class FragmentsMainActivity extends FragmentActivity {

public final static int STARTUP_ACTIVITY_RESULT=0;

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

    if(savedInstanceState == null) {
        Intent intentStartupActivity = new Intent(this, StartupActivity.class);
        if(intentStartupActivity != null)
            startActivityForResult(intentStartupActivity, STARTUP_ACTIVITY_RESULT);

        // get an instance of FragmentTransaction from your Activity
        FragmentTransaction fragmentTransaction = 
                getSupportFragmentManager().beginTransaction();

        //add a fragment
        StreamingActivity streamingActivity = new StreamingActivity();
        if (streamingActivity != null) {
            fragmentTransaction.add(R.id.streamingactivity, streamingActivity);
            fragmentTransaction.commit();
        }
    }
}

我的片段:

public class StreamingActivity extends Fragment {

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Log.i("StreamingActivity","onCreate")   
}

我的布局文件:“res/layout/main.xml”

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

    <FrameLayout
    android:id="@+id/streamingactivity"
    android:layout_width="0px"
    android:layout_height="match_parent">
</FrameLayout>


<!-- IMU -->
<TextView
    android:id="@+id/imu_label"
    style="@style/Label.Title"
    android:text="@string/imu"
    />

<kesten.fragmentstestbed.ImuView
    android:id="@+id/imu_values"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/imu_label"
    android:text=""
    />

<!-- Accelerometer -->
<TextView
    android:id="@+id/accelerometer_label"
    style="@style/Label.Title"
    android:text="@string/accelerometer"
    android:layout_below="@+id/imu_values"
    />

<!-- Filtered -->
<kesten.fragmentstestbed.CoordinateView
    android:id="@+id/accelerometer_filtered_coordinates"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/accelerometer_label"
    android:text="@string/filtered"
    />

</RelativeLayout>

和我的 FragmentActivity 的“activity_fragments_main.xml”

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:padding="@dimen/padding_medium"
        android:text="@string/hello_world"
        tools:context=".FragmentsMainActivity" />

</RelativeLayout>

从其他 Stackoverflow 线程收集的 id not found 错误的可能原因:

  • FragmentActivity 的 onCreate() 方法的 setContentView() 布局错误。

我检查了一下,我的 xml 文件都在那里。也许存在语法错误或缺少链接资源,但我看不到它。我知道 HierarchyViewer 将是调试 UI 的有用工具,但我无法让它工作。

  • 传递给 FragmentTransaction.add 的 id 必须是 setContentView 中指定的布局的子级。

我的 FragmentActivity 的 onCreate @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_fragments_main);

我的 Fragment 的 onCreateView

@Override 
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {

    Log.i("StreamingActivity","onCreateView");      
    View view = inflater.inflate(R.layout.main, container, false);

我假设 LayoutManager 为容器传递了正确的值,即在 FragmentActivity 的 setContentView() 中设置的值。但无论如何,我们永远无法到达那里。logCat 中的错误发生在我们进入 onCreateView() 之前。

我唯一能想到的 atm 是在 setContentView 之后和 StreamingActivity 之前调用的 startupActivity(它是封闭的第三方)将内容视图设置为 R.layout.activity_fragments_main 之外的东西,这不是我的片段视图的父级。

问题似乎源于这样一个事实,即虽然 Activity 有 setContentView 可以随时调用,但 Fragment 只有 onCreateView() ,它在启动片段的片段事务之后被调用。

为什么以及在调用 onCreateView() 之前尝试访问片段视图的原因是什么?

达科拉姆

4

3 回答 3

0

以下FrameLayout应该在activty_fragments_main

   <FrameLayout
    android:id="@+id/streamingactivity"
    android:layout_width="0px"
    android:layout_height="match_parent">
</FrameLayout>

下面的函数在第一个参数中提供的布局内添加了一个片段:

 fragmentTransaction.add(R.id.streamingactivity, streamingActivity);

所以尝试改变:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:padding="@dimen/padding_medium"
        android:text="@string/hello_world"
        tools:context=".FragmentsMainActivity" />

</RelativeLayout>

至:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >


   <FrameLayout
    android:id="@+id/streamingactivity"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
</FrameLayout>

</RelativeLayout>
于 2014-02-27T13:08:38.417 回答
0

TextViewactivty_fragments_main 中没有 id。我遇到了类似的错误,并添加了一个 id,突然间一切都开始工作了......

于 2012-08-07T05:47:36.150 回答
0

FragmentMainActivity中,您将片段添加到id streamingactivity

fragmentTransaction.add(R.id.streamingactivity, streamingActivity);

和我的 FragmentMainActivity 的“activity_fragments_main.xml”

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:padding="@dimen/padding_medium"
        android:text="@string/hello_world"
        tools:context=".FragmentsMainActivity" />

</RelativeLayout>

//你的布局必须包含一个带有 id 流活动的 FrameLayout。你的活动必须包含

<FrameLayout 
android:id="@+id/streamingactivity"
....
..>

而你的StreamingActivity哪个是Fragment必须进口的android.support.v4.Fragment。并且必须执行onCreateView

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

或者另一个问题可能是。您已经交换了 Fragment 和 Activity 的 LayoutId。就像你的名字一样

于 2016-08-22T07:20:54.843 回答