ViewPager渲染BIG和无法解释的问题

时间:2014-05-19 12:42:37

标签: android android-fragments android-viewpager

图像更好的词:

ViewPager without a PagerAdapter

Login screen, all messed up

Third fragment, same

我(相当简单)的代码:

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的虚假编辑视图中呈现得很好:

Eclipse's fake view of my fragment

任何遇到此问题的人......我需要帮助!

1 个答案:

答案 0 :(得分:0)

我发现了问题,这是@style/Theme.NoBackground中我的活动(自定义AndroidManifest.xml)上设置的主题。

该应用程序的背景是透明的......