2016-03-01 34 views
0

我的活動中有兩個圓形進度條。其中一個將在一個圓形進度條的下方。當然,他們不適合單獨的活動頁面,我不想實際適合他們。我想要做的是提供這種情況。我認爲我處於密切的狀況,但我無法做到。如何在相對佈局上使用我的滾動視圖?滑動不起作用

The position im in is this and the screen is like i want to make.It's not problem

的XML代碼是在這裏

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:layout_width="fill_parent" 
    android:layout_height="2000dp" 
    tools:context=".MainActivity"> 


    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
       android:id="@+id/ScrollView" 
       android:layout_width="fill_parent" 
       android:layout_height="1000dp" 
       android:fillViewport="true"> 


    <LinearLayout 
     android:id="@+id/LinearLayout01" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:orientation="vertical"> 

    <RelativeLayout 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_alignParentBottom="true"> 



    <com.mikhaellopez.circularprogressbar.CircularProgressBar 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     app:cpb_background_progressbar_color="#FFCDD2" 
     app:cpb_background_progressbar_width="5dp" 
     app:cpb_progressbar_color="#F44336" 
     app:cpb_progressbar_width="10dp" 
     android:id="@+id/CircularProgressBar" 
     android:layout_centerHorizontal="true"/> 

      <TextView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:textAppearance="?android:attr/textAppearanceLarge" 
       android:text="Jogging" 
       android:id="@+id/textViewJogging" 
       android:layout_marginTop="61dp" 
       android:layout_centerHorizontal="true"/> 

      <TextView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:textAppearance="?android:attr/textAppearanceLarge" 
       android:text="15" 
       android:id="@+id/textViewJoggingLevel" 
       android:layout_below="@+id/textViewJogging" 
       android:layout_centerHorizontal="true"/> 

      <TextView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:textAppearance="?android:attr/textAppearanceLarge" 
       android:text="1500/2000" 
       android:id="@+id/textViewProcess" 
       android:layout_alignBottom="@+id/CircularProgressBar2" 
       android:layout_centerHorizontal="true" 
       android:layout_marginBottom="63dp"/> 

      <TextView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:textAppearance="?android:attr/textAppearanceMedium" 
       android:text="%75" 
       android:id="@+id/textViewPercentage" 
       android:layout_below="@+id/textViewJoggingLevel" 
       android:layout_centerHorizontal="true"/> 


     <com.mikhaellopez.circularprogressbar.CircularProgressBar 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      app:cpb_background_progressbar_color="#FFCDD2" 
      app:cpb_background_progressbar_width="5dp" 
      app:cpb_progressbar_color="#F44336" 
      app:cpb_progressbar_width="10dp" 
      android:id="@+id/CircularProgressBar2" 
      android:layout_gravity="right" 
      android:layout_below="@+id/textView" 
      android:layout_centerHorizontal="true"/> 

     <TextView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:textAppearance="?android:attr/textAppearanceMedium" 
      android:text="%75" 
      android:id="@+id/textViewPercentage2" 
      android:layout_below="@+id/CircularProgressBar2" 
      android:layout_centerHorizontal="true" 
      /> 

     <TextView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:textAppearance="?android:attr/textAppearanceMedium" 
      android:text="%75" 
      android:id="@+id/textView" 
      android:layout_alignBottom="@+id/CircularProgressBar" 
      android:layout_centerHorizontal="true" 
      android:layout_marginBottom="760dp"/> 


    </RelativeLayout> 
    </LinearLayout> 
    </ScrollView> 
</RelativeLayout> 

結果是我的手機上相同的,當我啓動它,但我不能在屏幕上滑下。滑動不起作用。我嘗試了一切。你可以幫我嗎?謝謝你們

回答

0

變化layout_height上滾動型爲 「match_parent」,而不是1000dp:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
      android:id="@+id/ScrollView" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:fillViewport="true"> 
+0

沒有奏效。還是一樣。滑動不會發生 – user3744110

相關問題