我的XML文件的代码如下所示
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_exercise_one_questions"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
tools:context="com.example.joshiyogesh.puzzle.ExerciseOneQuestions">
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="What Number Replaces Question mark ? "/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_height="fill_parent"
android:layout_width="wrap_content">
</android.support.v4.view.ViewPager>
</LinearLayout>
最初它正在显示,但是我在XML文件中添加了文本视图后,它没有显示在活动中。 任何帮助,将不胜感激。因为我知道,我无法找到究竟的原因。
编辑:1 应该是什么,下面会有textView,会有PageAdapter
答案 0 :(得分:1)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_exercise_one_questions"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="What Number Replaces Question mark ? "/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_height="fill_parent"
android:layout_width="match_parent">
</android.support.v4.view.ViewPager>
</LinearLayout>
答案 1 :(得分:0)
在你的代码中,线性布局方向是垂直的,你给出了textview(这是你的第一个视图)width =“match_parent”意味着它将获取所有可用的宽度然后你添加你的viewpager(没有任何空间仍然存在)。将android:orientation =“vertical”更改为android:orientation =“horizontal”,它将工作。