我需要帮助来尝试我的viewpager工作,我把我的代码帮我找到了错误。感谢
我有这个片段
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class ScreenSlidePageFragment extends Fragment {
/**
* The argument key for the page number this fragment represents.
*/
public static final String ARG_PAGE = "page";
/**
* The fragment's page number, which is set to the argument value for {@link #ARG_PAGE}.
*/
private int mPageNumber;
/**
* Factory method for this fragment class. Constructs a new fragment for the given page number.
*/
public static ScreenSlidePageFragment create(int pageNumber) {
ScreenSlidePageFragment fragment = new ScreenSlidePageFragment();
Bundle args = new Bundle();
args.putInt(ARG_PAGE, pageNumber);
fragment.setArguments(args);
return fragment;
}
public ScreenSlidePageFragment() {
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mPageNumber = getArguments().getInt(ARG_PAGE);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout containing a title and body text.
ViewGroup rootView = (ViewGroup) inflater
.inflate(R.layout.test, container, false);
return rootView;
}
/**
* Returns the page number represented by this fragment object.
*/
public int getPageNumber() {
return mPageNumber;
}
}
这个类膨胀下一个XML" R.layout.fragment_clases"
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView style="?android:textAppearanceMedium"
android:padding="16dp"
android:lineSpacingMultiplier="1.2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/testString" />
</ScrollView>
这个布局有2个选项卡,第一个正常工作,它向我显示了一个包含我信息的表,第二个我尝试了一个viewpager。当我在第二个标签中,我需要在此选项卡中显示一个viewpager。问题是viewpager无法正常工作,当我更改为第二个选项卡时,没有错误,但它没有显示任何内容。我想我已经按照谷歌在https://developer.android.com/training/animation/screen-slide.html找到的一些信息中的所有步骤进行了操作 有关更多信息,我将我的ScreenSliderPageFragment:
{{1}}
我把用于片段内容的布局文件&#34; R.layout.test&#34;
{{1}}
我需要为此viewpager做些什么?
答案 0 :(得分:0)
最后我解决了这个问题。 我改变了这个:
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/pestanaGrafEmb">
<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" />
</ScrollView>
为此:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/pestanaGrafEmb">
<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" />
</LinearLayout>