web-dev-qa-db-ja.com

現在のテーマでスタイル「floatingActionButtonStyle」が見つかりませんでした

私はAndroid開発の初心者なので、Android studio "hello world"に付属する簡単なプロジェクトを開始しますが、この問題が発生します。

現在のテーマでスタイル 'floatingActionButtonStyle'が見つかりませんでしたありますAndroid studio 3.1.3 x86

また、build.gradleファイルからの私のSDKバージョンは28です

これはactivity_main.xmlです。

    <?xml version="1.0" encoding="utf-8"?>
<Android.support.design.widget.CoordinatorLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    xmlns:app="http://schemas.Android.com/apk/res-auto"
    xmlns:tools="http://schemas.Android.com/tools"
    Android:layout_width="match_parent"
    Android:layout_height="match_parent"
    tools:context=".MainActivity">

    <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_main" />

    <Android.support.design.widget.FloatingActionButton
        Android:id="@+id/fab"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"
        Android:layout_gravity="bottom|end"
        Android:layout_margin="@dimen/fab_margin"
        app:srcCompat="@Android:drawable/ic_dialog_email" />

</Android.support.design.widget.CoordinatorLayout>

これは私のcontent_main.xmlです:

        <?xml version="1.0" encoding="utf-8"?>
    <Android.support.constraint.ConstraintLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
        xmlns:app="http://schemas.Android.com/apk/res-auto"
        xmlns:tools="http://schemas.Android.com/tools"
        Android:layout_width="match_parent"
        Android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        tools:context=".MainActivity"
        tools:showIn="@layout/activity_main">

        <TextView
            Android:layout_width="wrap_content"
            Android:layout_height="wrap_content"
            Android:text="Hello World!"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toTopOf="parent" />
    </Android.support.constraint.ConstraintLayout>

これは私のAndroidManifest.xmlです:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:Android="http://schemas.Android.com/apk/res/Android"
    package="com.example.admin.myapplication">

    <application
        Android:allowBackup="true"
        Android:icon="@mipmap/ic_launcher"
        Android:label="@string/app_name"
        Android:roundIcon="@mipmap/ic_launcher_round"
        Android:supportsRtl="true"
        Android:theme="@style/AppTheme">
        <activity
            Android:name=".MainActivity"
            Android:label="@string/app_name"
            Android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action Android:name="Android.intent.action.MAIN" />

                <category Android:name="Android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>
7
zerocool

FloatingActionButtonのソースを確認すると、コンストラクタが次のように変更されていることがわかります

public FloatingActionButton(Context context, AttributeSet attrs) {
    this(context, attrs, R.attr.floatingActionButtonStyle);
}

新しいfloatingActionButtonStyleがあり、デフォルトでは'com.Android.support:appcompat-v7:28.0.0-alpha1'に含まれていないようです。

私が見つけた最良の回避策(同様のケース ここ に基づく)は、テーマで属性を定義することです(おそらくデバッグバージョンでのみ)。このようにして、@style/Widget.Design.FloatingActionButtonがサポートライブラリですでに定義されているため、エラーがなくなりますしたがって、スタイルを作成する必要はありません。values/styles.xmlファイルのAppThemeスタイル内で参照するだけです。

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="floatingActionButtonStyle">@style/Widget.Design.FloatingActionButton</item>
</style>

必ずレイアウトプレビューとクリーンビルドでAppThemeを使用してください。

6
Rami Alloush

スタイルに関する「false」エラーの可能性があります。この問題が発生している正しいアクティビティについてsetOnClickListenerが記述されているかどうかを確認してください。このボタンのリスナーを間違ったアクティビティに書き込んだ可能性があります。 setOnClickListenerに関するコードを一時的にコメントし、ビルドを再起動することで、簡単にテストできます。

1