2013-11-14 4 views
0

Я добавил ImageView в свою основную деятельность, но когда я запускаю приложение, он выдает сообщение об ошибке Inflate. Из журнала ошибок видно, что это проблема с созданием xml для этой активности. Но то, что я хочу знать, что не так с деятельностью конкретно? Полный журнал ошибок размещен здесь: http://pastebin.com/PAYrjHCLКак исправить исключение Inflate в макете?

От взгляда на ошибку, я думаю, что это может происходить из-за противоречивой высоты или ширины, но я не уверен, где. Основная ошибка - это строка @ строка 79, выделенная в код ниже.

Активность макета XML выглядит так:

<ScrollView 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:fillViewport="true" 
    android:gravity="center_vertical" 
    android:paddingBottom="@dimen/activity_vertical_margin" 
    android:paddingLeft="@dimen/activity_horizontal_margin" 
    android:paddingRight="@dimen/activity_horizontal_margin" 
    android:paddingTop="@dimen/activity_vertical_margin" 
    tools:context=".MainActivity" 
    > 

<RelativeLayout 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:orientation="vertical" > 

<EditText 
    android:id="@+id/ductDepth" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_above="@+id/calc" 
    android:layout_centerHorizontal="true" 
    android:layout_marginBottom="37dp" 
    android:ems="10" 
    android:hint="@string/enter_duct_depth_mm" 
    android:inputType="numberDecimal" 
    android:singleLine="true" > 

    <requestFocus /> 
</EditText> 

<EditText 
    android:id="@+id/offDepth" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_above="@+id/textView3" 
    android:layout_alignLeft="@+id/ductDepth" 
    android:layout_marginBottom="14dp" 
    android:ems="10" 
    android:hint="@string/enter_offset_depth_mm" 
    android:inputType="numberDecimal" 
    android:singleLine="true" /> 

<EditText 
    android:id="@+id/offLength" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_above="@+id/textView2" 
    android:layout_alignLeft="@+id/offDepth" 
    android:layout_marginBottom="20dp" 
    android:ems="10" 
    android:hint="@string/enter_offset_length_mm" 
    android:inputType="numberDecimal" 
    android:singleLine="true" /> 

<TextView 
    android:id="@+id/textView2" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_above="@+id/offDepth" 
    android:layout_alignLeft="@+id/offDepth" 
    android:text="Depth:" 
    android:textSize="30sp" /> 

<TextView 
    android:id="@+id/textView3" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_above="@+id/ductDepth" 
    android:layout_alignLeft="@+id/ductDepth" 
    android:text="Duct Depth:" 
    android:textSize="30sp" /> 

<TextView //line 79! 
    android:id="@+id/textView1" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_above="@+id/offLength" 
    android:layout_alignLeft="@+id/offLength" 
    android:text="Length:" 
    android:textColor="@style/AppTheme" 
    android:textSize="30sp" /> 

<Button 
    android:id="@+id/calc" 
    android:layout_width="200dp" 
    android:layout_height="70dp" 
    android:layout_alignLeft="@+id/ductDepth" 
    android:layout_alignParentBottom="true" 
    android:layout_marginBottom="30dp" 
    android:background="@drawable/calcbttrans" /> 



<android.support.v4.view.ViewPager  
android:id="@+id/pager" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_below="@id/calc" > 

<!-- 
This title strip will display the currently visible page title, as well as the page 
titles for adjacent pages. 
--> 

<android.support.v4.view.PagerTitleStrip 
    android:id="@+id/pager_title_strip" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_gravity="top" 
    android:background="#33b5e5" 
    android:paddingBottom="4dp" 
    android:paddingTop="4dp" 
    android:textColor="#fff" /> 

</android.support.v4.view.ViewPager> 

<ImageView 
    android:id="@+id/imageView1" 
    android:layout_width="wrap_content" 
    android:layout_height="700dp" 
    android:layout_above="@+id/textView1" 
    android:layout_centerHorizontal="true" 
    android:layout_marginBottom="84dp" 
    android:src="@drawable/mark3" /> 

</RelativeLayout> 

</ScrollView> 

ответ

1

android:textColor атрибут должен быть передан только в @color или шестнадцатеричное значение для Android, чтобы иметь возможность надуть. Передача этого стиля не будет работать.

+0

Это зафиксировал его, гений :) –

0

Здесь Ваша задача

android:textColor="@style/AppTheme" 

Вызванный: android.content.res.Resources $ NotFoundException: Ресурс не ColorStateList (цвет или путь):

+0

Я не понимаю, в чем проблема, которую вы показываете? Продумайте, пожалуйста. –

+0

Извините misplaced.have обновил сообщение. – Subbu