2017-05-22 7 views
0

나는 안드로이드 스튜디오에서 일하고 있습니다. 그것은 안드로이드 버전 2.3.2, 7.0 (nougat) 및 API 25입니다. 내 레이아웃/XML 파일에 대해 렌더링 문제가 발생했으며 순환 체인도 발견되었습니다. activity_maps에는 activity_maps가 포함되어 있습니다.렌더링 문제/찾을 순환 <include> 체인 프로젝트 중 하나 레이아웃 - 안드로이드 스튜디오

내가 다른 StackOverflow의 게시물을 보았고, 낮은 버전에 API를 변경, 추가하여 style.xml 파일을 변경 "자료를." 얻을.

이 문제가 계속-발생하는 다시, 그리고 내가해야 할 다른 모르겠어요. 이 레이아웃을 제외하고 다른 모든 레이아웃/XML 디자인은 작동합니다. 지도를 사용하여 두 지점 간 방향을 찾습니다.

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:map="http://schemas.android.com/apk/res-auto" 
xmlns:tools="http://schemas.android.com/tools" 
tools:context="edu.usf.cse.labrador.familycare.MapsActivity" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:orientation="vertical"> 

<EditText 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:id="@+id/etOrigin" 
    android:hint="Enter your address" /> 


<RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:orientation="horizontal"> 
    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Find path" 
     android:id="@+id/btnFindPath" /> 
    <ImageView 
     android:layout_marginLeft="20dp" 
     android:layout_marginTop="5dp" 
     android:layout_width="40dp" 
     android:layout_height="40dp" 
     android:src="@drawable/ic_distance"/> 
    <TextView 
     android:layout_marginLeft="5dp" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="0 km" 
     android:id="@+id/tvDistance" /> 

    <ImageView 
     android:layout_marginLeft="20dp" 
     android:layout_marginTop="5dp" 
     android:layout_width="40dp" 
     android:layout_height="40dp" 
     android:padding="5dp" 
     android:src="@drawable/ic_clock"/> 
    <TextView 
     android:layout_marginLeft="5dp" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="0 min" 
     android:id="@+id/tvDuration" /> 
</RelativeLayout> 


<fragment 
    android:id="@+id/map" 
    android:name="com.google.android.gms.maps.SupportMapFragment" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:layout="@layout/activity_maps" /> 

What i see for this layout.

난 아무것도 표시되지 않습니다 설계 옵션에서 : 다음은 XML 파일입니다. 레이아웃이 비어 있습니다.

이 문제를 해결하는 방법에 대한 조언이 있으면 알려 주시기 바랍니다.

감사합니다. 정말 감사합니다.

+0

나는 이미 그것을 고쳤으며 LinearLayout 닫기 태그를 놓친 것 같지만, 완성을 위해 닫는 LinearLayout 태그를 넣는 것을 잊었습니까? – timv

답변

0

닫힌 선형 레이아웃이 누락되었습니다.

나는 그것을 넣어 내 화면에 제공됩니다.

</LinearLayout >