1

我正在尝试升级我的 Android 项目以使用 Android 5.0 进行编译。在此之前我成功地使用了 appcompat-v7 库。现在使用 ActionBarActivity 和 Theme.AppCompat 会导致我的片段布局中的视图不呈现或不可见。如果我将其更改回 Activity 并删除 appcompat 主题,则视图将再次可见。谁能指出我做错的配置?我的 Eclipse 项目正在使用 Android 5.0、android-support-v4.jar 和 android-support-v7-appcompat.jar 的私有库进行编译。在 Android 依赖项下是 android-support-v7-appcompat.jar。

我有以下代码:

在 AndroidManifest.xml 中

    <?xml version="1.0" encoding="utf-8"?><!DOCTYPE something>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.mycompany.ctest"
    android:versionCode="33"
    android:versionName="1.4.0" >
    <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="18"/>

    <application
        android:icon="@drawable/ic_launcher"
        android:label="My App" 
        android:allowBackup="true" >
        <activity
            android:name=".MyActivity"
            android:theme="@style/Theme.AppCompat">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

在 fragment_layout.xml 中:

<?xml version="1.0" encoding="utf-8"?><!DOCTYPE something>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >

     <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="Nothing here"
        android:textColor="@color/blue" >
    </TextView>

</LinearLayout>

在 MyActivity.java 中:

package com.mycompany.ctest;

import android.app.FragmentManager;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;

public class MyActivity extends ActionBarActivity {

    private FragmentManager mFM;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        mFM = getFragmentManager();
        mFM.beginTransaction()
                .add(android.R.id.content, new MyFragment(),"frag")
                .commit();
    }
}   

在 MyFragment.java 中:

package com.mycompany.ctest;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class MyFragment extends Fragment {

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

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup group, Bundle saved) {
        return inflater.inflate(R.layout.fragment_layout,group,false);
    }
}

编辑:LogCat 显示 12-13 10:10:09.709: E/ResourceType(1013): Style contains key with bad entry: 0x01010479

虽然我认为这一定是无关紧要的,因为如果我添加一个加载了静态片段而不是使用片段管理器的 Activity 布局,我的视图就会变得可见。而且我仍然收到带有错误条目消息的样式包含键。

4

2 回答 2

1

我终于添加了一个带有 id 的空白框架布局的活动布局。

活动布局.xml

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

    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/fragment_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />


</LinearLayout>

然后在使用 .add 或 .replace 向 Activity 添加片段时使用该 ID,而不是使用 android.R.id.content。

setContentView(R.layout.activity_layout);
getSupportFragmentManager().beginTransaction()
                .add(R.id.fragment_container,new MyFragment(), "frag")
                .commit();

我仍然不知道为什么会这样以及为什么 android.R.id.content 不起作用。

于 2014-12-13T17:48:53.147 回答
0

尝试从支持库导入,而不仅仅是“import android.app.Fragment;” ...希望这可能会有所帮助

  import android.support.v4.app.Fragment;
  import android.support.v4.app.FragmentManager;
于 2014-12-13T15:57:37.883 回答