获取布局文件的android.content.res.resources $ notfoundexception

时间:2015-06-05 10:30:11

标签: android android-resources

我从用户那里收到关于崩溃消息的罕见崩溃报告: Fatal Exception: android.content.res.Resources$NotFoundException File res/layout/game_dialog_game_ended.xml from xml type layout resource ID #0x7f03001c

以下是对例外的完整描述的链接。 http://crashes.to/s/419d864f3af

仅从少数用户那里收到,但这种行为的原因很有趣。

谢谢。

修改 game_dialog_game_ended.xml的内容

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:padding="5dip" >

    <RelativeLayout
        android:id="@+id/ll_game_stop_rating"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        tools:ignore="RtlSymmetry,RtlHardcoded" >

        <ImageButton
            android:id="@+id/btn_game_stop_show_table"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:contentDescription="@string/game_ended_show_table"
            android:src="@drawable/ic_play_games_badge_leaderboards"
            android:visibility="gone" />

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            android:layout_toLeftOf="@id/btn_game_stop_show_table"
            android:orientation="horizontal" >

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/game_ended_rating"
                android:textColor="@android:color/primary_text_dark"
                android:textSize="18sp" />

            <TextView
                android:id="@+id/tv_game_stop_rating"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:paddingLeft="5dip"
                android:textColor="@android:color/primary_text_dark"
                android:textSize="22sp" />

            <TextView
                android:id="@+id/tv_game_stop_rating_change"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:paddingLeft="5dip"
                android:textSize="18sp" />
        </LinearLayout>
    </RelativeLayout>

    <TextView
        android:id="@+id/tv_game_stop_sign_in"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/game_ended_sign_in"
        android:textColor="@android:color/primary_text_dark"
        android:textSize="13sp" />

    <Button
        android:id="@+id/btn_game_stop_show_table_text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/game_ended_show_table"
        android:textColor="@android:color/primary_text_dark"
        android:visibility="gone" />

</LinearLayout>

0 个答案:

没有答案