我正在用AndroidLollipop(5.0)中使用的新材料设计创建一个应用程序。
我正在使用以下指南:
创建工具栏后,收到以下错误:“以下类无法实例化:- Android.Support.v7.Widget.toolbar”
该应用程序在手机或模拟器中运行良好,但Android Studio的布局设计师不能正确显示布局。
这里有一些图像:
my_awesome_toolbar.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/my_awesome_toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary" />
activity_my.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/root"
tools:context="com.myapp.test.MyActivity"
android:orientation="horizontal">
<include
android:id="@+id/toolbar"
layout="@layout/my_awesome_toolbar"
/>
<!-- Rest of layout -->
</RelativeLayout>
MyActivity.java:
package com.myapp.test;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.support.v7.widget.Toolbar;
import android.view.Menu;
import android.view.MenuItem;
public class MyActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.my, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
样式的xml代码(values/styles.xml):
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/blue</item>
<item name="colorPrimaryDark">@color/dark_blue</item>
<item name="actionOverflowButtonStyle">@style/AppTheme.OverflowButtonStyle</item>
</style>
<!-- Style Title -->
<style name="Title">
<item name="android:textColor">@color/white</item>
<item name="android:textStyle">bold</item>
<item name="android:textSize">16sp</item>
</style>
<style name="AppTheme.OverflowButtonStyle" parent="Widget.AppCompat.ActionButton.Overflow">
<item name="android:src">@drawable/overflow_icon</item>
</style>
</resources>
目前我使用的是Android Studio Beta 0.8.9
我更改了res/values/styles.xml文件:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
对此:
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
这就解决了问题。
问题: 无法实例化以下类:Android.Support.V7.Widget.AppCompatimageView 这是跟踪堆栈。
以下是我的构建依赖项。gradle(应用程序) 这里是build.gradle(Project)的一部分 当我访问任何文件时,它向我显示了一个错误**以下类无法实例化: 我已将Android Studio更新到最新的仍然显示错误。 我无法解决这个问题谢谢
我正在尝试为我的应用程序使用。首先,我将添加到我的项目中: 然后将此代码添加到菜单中: 但是,当我启动时,我得到了以下信息: 当我按下搜索图标时,什么也没有发生:( 编辑1:
发生什么事了?需要帮助~我试了很多方法,但还是解决不了 呈现问题以下类无法实例化:- Android.support.design.widget.floatingActionButton(打开类,显示异常,清除缓存)提示:在自定义视图中使用view.isineditMode()跳过代码或在IDE中显示示例数据。如果这是一个意外错误,您也可以尝试构建项目,然后手动刷新布局。 异常详细描述了java.
我正在处理Android版本28,Firebase 16。 实现bottomNavView会返回以下错误: 我尝试将AppTheme样式更改为Base。主题,但不能解决它。 我的gradle应用程序: 我的风格。xml文件 我的gradle项目:
问题内容: 我一直在尝试在我的应用中使用AdMob横幅广告,但始终出现错误; 无法实例化以下类:-com.google.android.gms.ads.AdView 我已经尝试过所有可以在这里和通过谷歌搜索找到的解决方案。我有; 在我的gradle中。我已经输入了这里指定的所有部分; https://developers.google.com/mobile-ads- sdk/docs/ 但是仍然没