图像更好的词:
我(相当简单)的代码:
public class SplashScreenActivity extends FragmentActivity {
…
private ViewPager mPager;
private SplashPagerAdapter mPagerAdapter;
protected void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.activity_splash);
mPager = ((ViewPager) findViewById(R.id.pager));
mPagerAdapter = new SplashPagerAdapter(getSupportFragmentManager());
mPager.setAdapter(mPagerAdapter);
…
}
使用简单的活动布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent" />
在带有片段支持库的Nexus 5上。
我的片段在Eclipse的虚假编辑视图中呈现得很好:
任何遇到此问题的人......我需要帮助!
答案 0 :(得分:0)
我发现了问题,这是@style/Theme.NoBackground
中我的活动(自定义AndroidManifest.xml
)上设置的主题。
该应用程序的背景是透明的......