2017-11-22 14 views
0

안드로이드 스튜디오에서 XML 파일을 열면 이미지 뷰를 표시하지 않고 ActionBarOverlayLayout 메시지를 표시합니다.xml 파일에서 미리보기가 없습니다. 안드로이드 메시지가 있습니다. ActionBarOverlayLayout

<?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:id="@+id/activity_select" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:paddingBottom="@dimen/activity_vertical_margin" 
android:paddingLeft="@dimen/activity_horizontal_margin" 
android:paddingRight="@dimen/activity_horizontal_margin" 
android:paddingTop="@dimen/activity_vertical_margin" 
android:background="#2C2739" 
tools:context="com.rcpl.cradview.Select"> 

    <ImageView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     app:srcCompat="@drawable/stu1" 
     android:layout_centerVertical="true" 
     android:layout_centerHorizontal="true" 
     android:id="@+id/imageView5" /> 
</RelativeLayout> 

답변

0

작동하지 않을 수도 있지만 시도해 볼 가치가 있습니다.

스타일을 살펴보고 부모님이 "기본"이라고 적으십시오. 전에 테마

다시 작성하고 다시 시도하십시오.

+0

styles.xml에서 테마를 해결할 수 없음을 나타내는 붉은 색 테마가 표시됩니다. –

+0

"Gradle 파일로 프로젝트 동기화"를 클릭하십시오. – Nero

+0

예. 작동 중입니다. 귀하의 조언을 주셔서 감사합니다 ... –