猿问

ScrollView没有按片段滚动或无法正常工作

我是android的新手,正在开发一个应用程序,但遇到一个错误,这使我发疯。问题是它不能完全滚动,它使屏幕上没有按钮,因此无法看到它。Scrollview在每个活动中都可以正常工作,但在选项卡式活动中不起作用。android:layout_height="match_parent"如果我将match-parent的高度更改为500dp或任何整数值,则此代码会出现问题。我想知道为什么配偶不起作用。


我已经尝试过对这个问题进行所有建议的编辑,但是仍然没有任何编辑工作。


这是我的XML文件


<RelativeLayout 

xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:background="@mipmap/back"

android:paddingBottom="10dp"

android:paddingLeft="16dp"

android:paddingRight="16dp"

android:paddingTop="5dp"

tools:context="com.example.sahil.bloodbank.first"

>


<ScrollView

    android:id="@+id/sc1"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:fillViewport="true"

    android:scrollbars="vertical"

>


<LinearLayout

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:orientation="vertical">


<TextView

    android:id="@+id/name"

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:textColor="#000000"

    android:textSize="20sp"

    android:text="Welcome,"/>


    <ImageView

        android:id="@+id/imageView"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        app:srcCompat="@mipmap/wall1"

        android:layout_alignParentTop="true"

        android:layout_alignParentLeft="true"

        android:layout_alignParentStart="true" />


    <TextView

        android:id="@+id/desc"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_below="@+id/imageView"

        android:gravity="center"

        android:text="@string/data"

        android:textAlignment="gravity"

        android:textColor="@color/data"

        android:textSize="17sp" />

慕哥9229398
浏览 216回答 1
1回答
随时随地看视频慕课网APP

相关分类

Java
我要回答