我尝试升级Android项目以使用Android 5.0进行编译。在此之前我成功使用了appcompat-v7库。现在使用ActionBarActivity和Theme.AppCompat会导致片段布局中的视图不呈现或不可见。如果我将其更改回“活动”并删除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):样式包含输入错误的键:0x01010479
虽然我认为这一定是无关紧要的,因为如果我添加一个带有静态片段而不是使用片段管理器的Activity布局,我的视图就变得可见了。我仍然得到Style包含错误输入消息的密钥。
答案 0 :(得分:0)
尝试从支持库导入,而不仅仅是&#34; import android.app.Fragment;&#34; ...希望这可能会有所帮助
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
答案 1 :(得分:0)
我最后添加了一个带有id的空白框架布局的活动布局。
activity_layout.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而不是使用android.R.id.content向活动添加片段时使用该ID。
setContentView(R.layout.activity_layout);
getSupportFragmentManager().beginTransaction()
.add(R.id.fragment_container,new MyFragment(), "frag")
.commit();
我仍然不知道为什么会这样,以及为什么android.R.id.content无效。