2017-10-06 74 views
-4

我的應用效果很好我的Android手機上,但不是在舊版本的Android的...的TextView在imageview的工作正常的Android版本5.1.1但不是在舊版本的Android的

這裏是我的應用程序看起來像從我的手機

enter image description here

運行似乎沒有問題存在,但是當我的應用程序採用了Android的舊版本,這是結果。

enter image description here

我的.xml

<?xml version="1.0" encoding="utf-8"?> 
<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:orientation="vertical" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <com.github.ksoichiro.android.observablescrollview.ObservableScrollView 
     android:id="@+id/scroll" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:fillViewport="true" 
     android:layout_above="@+id/mediaplayerlayout" 
     android:layout_alignParentTop="true"> 

     <RelativeLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content"> 

      <ImageView 
       android:id="@+id/image" 
       android:layout_width="wrap_content" 
       android:layout_height="180dp" 
       android:scaleType="centerCrop" 
       android:src="@drawable/example" 
       tools:ignore="ContentDescription" /> 
      <TextView 
       android:id="@+id/v_title" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_alignLeft="@id/image" 
       android:layout_alignTop="@id/image" 
       android:layout_alignRight="@id/image" 
       android:layout_alignBottom="@id/image" 
       android:layout_margin="1dp" 
       android:textSize="18dp" 
       android:textColor="#FFFFFF" 
       android:gravity="center" 
       android:text="THIS IS THE TITLE OF SONGS" 
       /> 

      <View 
       android:id="@+id/anchor" 
       android:layout_width="match_parent" 
       android:layout_height="180dp" 
       android:minHeight="180dp" /> 

      <TextView 
       android:id="@+id/body" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:layout_below="@id/anchor" 
       android:background="@android:color/white" 
       android:paddingBottom="@dimen/activity_vertical_margin" 
       android:paddingLeft="@dimen/activity_horizontal_margin" 
       android:paddingRight="@dimen/activity_horizontal_margin" 
       android:paddingTop="@dimen/activity_vertical_margin" 
       /> 




     </RelativeLayout> 

    </com.github.ksoichiro.android.observablescrollview.ObservableScrollView> 

    <include layout="@layout/gradient_header" 
     android:id="@+id/include" /> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="?attr/colorPrimary" 
     android:minHeight="?attr/actionBarSize" 
     app:popupTheme="@style/Theme.AppCompat.Light.DarkActionBar" 
     app:theme="@style/Toolbar"/> 

    // ... Other layout here that not included 
</RelativeLayout> 

我怎樣才能解決這個問題將是雙向更高和更老版本的Android?

+0

工作,我沒有得到你要問什麼,請改變你的屏幕截圖嘗試沒有信使報頭此時 – UltimateDevil

回答

0

,當你建立一個項目只選擇最低的Android那麼它將在兩個

+1

但我選擇API 14最低 – basaya

相關問題