美好的一天。首先我会说没有从谷歌找到的方法帮助我所以我来到这里!令人沮丧的问题,但这里发生了什么。我有简单的布局文件夹与简单的布局文件。应用程序在几个屏幕和在HomeActivity屏幕上,它正在崩溃,提出这个问题。重要的是要提到我已经在2个不同的设备上进行了测试。在第一台设备上它一切正常,第二台设备没有。两台设备都处于纵向模式,两者都有相同的设备屏幕尺寸。我不知道android工作室要求我做什么,但应用程序工作正常,我没有做任何事情和sudennly android工作室决定给我这个例外。所以这是我的实际视图崩溃的代码。 / p>
xml文件
.specialcells(xlcelltypeblanks).count
<?xml version="1.0" encoding="utf-8"?>
<include
layout="@layout/app_bar_home"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_home"
app:menu="@menu/activity_home_drawer" />
<include>
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_home" />
<android.support.design.widget.FloatingActionMenu
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:layout_marginBottom="8dp"
android:layout_marginRight="8dp"
android:src="@drawable/fab_add"
app:layout_behavior="ink.utils.ScrollAwareFABBehavior"
fab:menu_colorNormal="@color/colorPrimary"
fab:menu_colorPressed="@color/colorPrimaryDark"
fab:menu_colorRipple="#cccccc">
<fab.FloatingActionButton
android:id="@+id/messages"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_message_white_24dp"
fab:fab_colorNormal="#444f65"
fab:fab_colorPressed="#636e85"
fab:fab_label="@string/messageText"
fab:fab_size="mini" />
<fab.FloatingActionButton
android:id="@+id/makePost"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_create_white_24dp"
fab:fab_colorNormal="#444f65"
fab:fab_colorPressed="#636e85"
fab:fab_label="@string/makePostString"
fab:fab_size="mini" />
</android.support.design.widget.FloatingActionMenu>
我遇到实际崩溃的活动
setContentView
除了谷歌搜索和尝试每个可能的解决方案检查布局额外文件夹,我肯定没有,我只有一个单一的布局文件夹,我已经尝试清理项目,重建,无效缓存和重新启动但没有任何帮助我... 。 这是xml文件的gradle依赖
public class HomeActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener, View.OnClickListener {
private FloatingActionMenu mFab;
private ImageView mProfileImage;
private SharedHelper mSharedHelper;
private FloatingActionButton mMessages;
private FloatingActionButton mNewPost;
private Feed mFeed;
private MyFriends mMyFriends;
private Toolbar mToolbar;
private DrawerLayout mDrawer;
public static String PROFILE;
public static String FEED;
public static String MESSAGES;
public static String GROUPS;
public static String FRIENDS;
public static String SETTINGS;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home);
没什么特别的,请你能帮帮我,告诉我该怎么办?
答案 0 :(得分:0)
还有一个&#39;包括&#39; -layout content_home
答案 1 :(得分:0)
得到了那个修复,这是一个人可以得到的奇怪。无论如何我找到了项目的drawables文件。问题是当我用键name
重构一个变量的时候我不知道为什么android studio决定了暂时重命名我所有项目密钥s within name to my input one.So there were no compiler issues nothing at all (which is far weird even) and all was working fine on one phone,and not on the other.So i removed that issue renamed to the default 'name' key and all got working.Be carefull as there are lot
的奇怪事物。