我知道,通常你会告诉我检查日志(在崩溃之前,看看我是否错过了什么)。 。没什么,因为当我尝试开始一项新活动时,应用程序无论如何都会崩溃。有效的唯一两项活动是SplashScreen
和SignIn
为了试图找出问题,我做了一些简单的事情
public class SplashScreen extends AppCompatActivity{
private final static String TAG = SplashScreen.class.getSimpleName();
private final static int DELAY = 2000;
@Override
protected void onCreate(@Nullable final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash_screen);
startActivity(new Intent(this, Root.class));
finish();
}
和Root.class
public class Root extends AppCompatActivity {
private final static String TAG = Root.class.getSimpleName();
private long backPressedTime = 0;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
Log.i(TAG, "onCreate");
super.onCreate(savedInstanceState);
Log.i(TAG, "super.onCreate");
setContentView(R.layout.trending);
Log.i(TAG, "setContentView");
}
所以我设置了一些日志,看起来我转到了第二个日志。第三个setcontentView
没有显示在控制台中。这个问题更加奇怪,因为无论我尝试从哪个班级开始,它都会发生同样的情况。
提及:
检查日志,没有异常(警告03-13 13:52:33.302 23233-23233/com.example.codkom.shirtex W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --debuggable ...
在应用程序上工作了几天并在我的个人设备上进行了测试(即使现在也可以正常工作)但不能在任何其他设备上进行测试..
如果算了,我使用multidex,我覆盖我的Application
类并根据文档做了Multidex.install(context);
(说这是因为我猜测可能是由Multidex引起但是在没有multidex的API 21+也没关系(因为API 21+自己处理multidex)
我的项目中有7项活动,其中3项出现问题
我到了一个我不知道还能做什么的地方......所以这就是我带着这个问题来到这里的原因。
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- The main content view -->
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/cl_"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:animateLayoutChanges="true"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.design.widget.AppBarLayout
android:background="@drawable/overlay"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
app:layout_scrollFlags="enterAlways|scroll"
app:navigationIcon="@drawable/ic_hamburger_menu">
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/standard_15_dp"
android:id="@+id/fab_"
android:backgroundTint="@color/blue"
app:fabSize="normal"
android:src="@drawable/ic_plus"
app:layout_anchor="@id/content_frame"
app:layout_anchorGravity="center|bottom"
app:layout_behavior="com.example.codkom.shirtex.ScrollAwareFABBehavior"/>
</android.support.design.widget.CoordinatorLayout>
<!-- The navigation drawer -->
<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start">
<include layout="@layout/mainmenu_activity"/>
</android.support.design.widget.NavigationView>
在清单中
<application
android:name=".application.ShirTexApp"
android:allowBackup="true"
android:icon="@drawable/ic_app_logo"
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat"
android:fullBackupContent="true">
<activity android:name=".activities.Root" android:theme="@style/Theme.AppCompat.Light.NoActionBar" android:windowSoftInputMode="adjustPan"/>
</application>
答案 0 :(得分:1)
似乎,你正在使用矢量Drawables for Images。 Vector Drawables不支持5.0以下。要在5.0以下制作支持向量drawable,所有设备都遵循以下步骤。
第1步:
首先,你必须在gradle中提及。 提供支持库
implementation 'com.android.support:appcompat-v7:23.2.0'
启用Vecor Drawable支持
android {
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
}
第2步:
在设计XML中,直接使用ImageView时,应使用srcCompat
而不是src
用于Vector Drawables。
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_add" />
当使用它来支持诸如leftDrawable,rightDrawable of Views之类的组件的drawable时,你应该将vector包装在drawable中。
ic_action_wrapped.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/ic_action_search_vector"/>
</selector>
第3步: 当您在运行时加载矢量图像时,您必须像这样加载图像。
AppCompatResources.getDrawable(mContext,R.drawable.ic_action_search_vector);
对于Application类中的某些设备或您的Activity。
static {
AppCompatDelegate.setCompatVectorFromResourcesEnabled(true);
}
在你的情况下 基于log,Toolbar或FloatingActionButton进行矢量图像更改并检查。
Google Documenation:official android docs
Stack Overflow也有很多关于矢量绘图的参考。
希望它有所帮助。