タグ付けされた質問 「android-5.0-lollipop」

Android Lollipopは、以前は単に「Android L」と呼ばれていましたが、Google I / O 2014で初めて公開されました。最終的な名前は10月15日に確認されました。APIレベル21をサポートしています。

24
Androidのフローティングアクションボタンの色の変更
マテリアルのフローティングアクションボタンの色を変更しようとしていますが、成功しませんでした。 <android.support.design.widget.FloatingActionButton android:id="@+id/profile_edit_fab" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="end|bottom" android:layout_margin="16dp" android:clickable="true" android:src="@drawable/ic_mode_edit_white_24dp" /> 追加しようとしました: android:background="@color/mycolor" またはコード経由: FloatingActionButton fab = (FloatingActionButton) rootView.findViewById(R.id.profile_edit_fab); fab.setBackgroundColor(Color.parseColor("#mycolor")); または fab.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#mycolor"))); しかし、上記のどれもうまくいきませんでした。提案された重複質問の解決策も試しましたが、どれも機能しません。ボタンは緑色のままで、正方形にもなりました。 PS波及効果を追加する方法も知っておくとよいでしょう。それも理解できませんでした。

21
このアクティビティには、ウィンドウ装飾によって提供されるアクションバーが既にあります
Toolbarアクションバーの代わりに使用するものの上に移動しようとすると、エラーメッセージが表示され続ける java.lang.RuntimeException: Unable to start activity ComponentInfo{com.tyczj.weddingalbum/com.xxx.xxx.MainActivity}: java.lang.IllegalStateException: This Activity already has an action bar supplied by the window decor. Do not request Window.FEATURE_ACTION_BAR and set windowActionBar to false in your theme to use a Toolbar instead. at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2180) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230) at android.app.ActivityThread.access$600(ActivityThread.java:141) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234) at android.os.Handler.dispatchMessage(Handler.java:99) at android.os.Looper.loop(Looper.java:137) at …

20
ボタンのテキストがLollipopですべて大文字になるのはなぜですか?
新しいNexus 9タブレット(Lollipop-API 21)を使用して互換性を最近テストした私のアプリ"Tide Now WA"で。 ボタンのテキストを書き込みます。このアプリは、Android 2.3およびAndroid 4.0を使用してテキストを正しく書き込みます。つまり、大文字と小文字が混在しています。 同じアプリをNexus 9で実行すると、テキスト内のすべての文字が大文字になります。 FWIW私のマニフェストには、次のステートメントが含まれています。 uses-sdk android:minSdkVersion="10" android:targetSdkVersion="14" これをコードで修正できますか、それともOSのバグですか?

14
appcompat-v7:21.0.0 ':指定された名前に一致するリソースが見つかりません:attr' android:actionModeShareDrawable '
プロジェクトで最新のappcompat-v7サポートライブラリを使用しようとすると、次のエラーが発生します。 /Users/greg/dev/mobile/android_project/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/21.0.0/res/values-v11/values.xml Error:(36, 21) No resource found that matches the given name: attr 'android:actionModeShareDrawable'. Error:(36, 21) No resource found that matches the given name: attr 'android:actionModeShareDrawable'. Error:(36, 21) No resource found that matches the given name: attr 'android:actionModeShareDrawable'. Error:(36, 21) No resource found that matches the given name: attr 'android:actionModeShareDrawable'. …

11
Androidマテリアルデザインボタンのスタイル
マテリアルデザインのボタンのスタイルがわかりません。使用方法セクションの下にある「強制停止」ボタンと「アンインストール」ボタンのように、添付のリンクのようなカラフルな隆起ボタンを入手したいのですが。利用可能なスタイルはありますか、それとも定義する必要がありますか? http://www.google.com/design/spec/components/buttons.html#buttons-usage デフォルトのボタンスタイルが見つかりませんでした。 例: <Button style="@style/PrimaryButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Calculate" android:id="@+id/button3" android:layout_below="@+id/editText5" android:layout_alignEnd="@+id/editText5" android:enabled="true" /> 追加してボタンの背景色を変更しようとすると android:background="@color/primary" タッチアニメーション、影、丸みを帯びた角など、すべてのスタイルがなくなります。

30
Androidでの例外「オープン失敗:EACCES(アクセス拒否)」
私は得ています 開けませんでした: EACCES (Permission denied) ライン上 OutputStream myOutput = new FileOutputStream(outFileName); ルートを確認してみました android.permission.WRITE_EXTERNAL_STORAGE。 この問題を解決するにはどうすればよいですか? try { InputStream myInput; myInput = getAssets().open("XXX.db"); // Path to the just created empty db String outFileName = "/data/data/XX/databases/" + "XXX.db"; // Open the empty db as the output stream OutputStream myOutput = new FileOutputStream(outFileName); // …

16
背景色のボタンのマテリアル効果
Android v21サポートライブラリを使用しています。 カスタム背景色のボタンを作成しました。リップル、リビールなどのマテリアルデザイン効果は、背景色を使用すると消えます(クリック時の高度を除く)。 <Button style="?android:attr/buttonStyleSmall" android:background="?attr/colorPrimary" android:textColor="@color/white" android:textAllCaps="true" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Button1" /> 以下は通常のボタンで、効果は問題なく機能しています。 <Button style="?android:attr/buttonStyleSmall" android:layout_width="fill_parent" android:layout_height="wrap_content" android:textAllCaps="true" android:text="Button1" />

28
マニフェストのマージに失敗しました:uses-sdk:minSdkVersion 14
最新のSDKをダウンロードしてAndroid Studioをインストールしたため、プロジェクトをビルドできません。次のメッセージが表示されます。 Error:Gradle: Execution failed for task ':SampleProject:processProdDebugManifest'. > Manifest merger failed : uses-sdk:minSdkVersion 14 cannot be smaller than version L declared in library com.android.support:support-v4:21.0.0-rc1


10
アクションバーのナビゲーションモードはAndroid Lで廃止されました
Androidの「L」プレビュー用のAPIの差分レポートを見てみると、私が見ることでナビゲーションモードに関連するすべてのメソッドActionBarクラス(のようなsetNavigationMode()、addTab()、selectTab()、&​​C)。廃止されました。 ドキュメントは説明します: アクションバーのナビゲーションモードは非推奨であり、インラインツールバーのアクションバーではサポートされていません。代わりに、他の一般的なナビゲーションパターンの使用を検討してください。 想定される代替品は何ですか? また、「インラインツールバーアクションバー」は新しい概念ですか?今まで聞いたことがないと思います。

13
Android Lollipop CardViewの波及効果
Android開発者ページで説明されているように、アクティビティXMLファイルでandroid:backgound属性を設定して、CardViewに触れたときにリップル効果を表示しようとしていますが、機能しません。アニメーションはまったくありませんが、onClickのメソッドが呼び出されます。ここで提案されているとおり、ripple.xmlファイルの作成も試みましたが、結果は同じです。 アクティビティのXMLファイルに表示されるCardView: <android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto" android:layout_width="155dp" android:layout_height="230dp" android:elevation="4dp" android:translationZ="5dp" android:clickable="true" android:focusable="true" android:focusableInTouchMode="true" android:onClick="showNotices" android:background="?android:attr/selectableItemBackground" android:id="@+id/notices_card" card_view:cardCornerRadius="2dp"> </android.support.v7.widget.CardView> 私はAndroid開発に比較的慣れていないため、いくつかの明らかな間違いを犯した可能性があります。 前もって感謝します。

7
AppCompat-v7でのツールバーとコンテキストアクションバー
LollipopとAppCompat-v7ライブラリで導入された、新しく追加されたツールバーの使用に取り組んでいます。ツールバーの設定についてこのガイドに従いましたが、コンテキストアクションバー(コピー/貼り付けのためにテキストを強調表示するなど)を表示するものを呼び出すと、ページ上でツールバーが押し下げられることに気付きました。ページの下部にある画像で、私が話していることを確認できます。 なので、基本的にはこう設定しました。インクルードタグで使用するxmlファイルでツールバーを定義しています。 <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="?attr/colorPrimary"/> 次に、それを自分のビューでインスタンス化します。 <LinearLayout 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:orientation="vertical" android:id="@+id/root" tools:context=".MainActivity"> <include layout="@layout/toolbar" android:layout_width="match_parent" android:layout_height="wrap_content"/> <!-- Rest of view --> </LinearLayout> コードでは、次のように設定します。 // On Create method of activity: Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); Contextual ActionBarがツールバーの上に来るようにする方法を誰かが知っていますか?

22
INSTALL_FAILED_DUPLICATE_PERMISSION…C2D_MESSAGE
私はアプリでGoogle通知を使用しており、今までマニフェストで以下を実行しました: <!-- GCM --> <uses-permission android:name="android.permission.GET_ACCOUNTS" /> <!-- GCM requires a Google account. --> <uses-permission android:name="android.permission.WAKE_LOCK" /> <!-- Keeps the processor from sleeping when a message is received. --> <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /> <!-- This app has permission to register and receive data message. --> <!-- Creates a custom permission so …

16
ツールバーにデフォルトで影なし?
サポートライブラリv21の新しいツールバーを使用してアプリを更新しています。私の問題は、「高度」属性を設定しないと、ツールバーが影を落とさないことです。それは正常な動作ですか、それとも何か問題がありますか? 私のコードは: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <android.support.v7.widget.Toolbar xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/my_awesome_toolbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="?attr/colorPrimary" android:elevation="4dp" android:minHeight="?attr/actionBarSize" app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" app:popupTheme="@style/ThemeOverlay.AppCompat.Light" /> <FrameLayout android:id="@+id/FrameLayout1" android:layout_width="match_parent" android:layout_height="match_parent"> . . . そして私の活動では-OnCreateメソッド: Toolbar toolbar = (Toolbar) findViewById(R.id.my_awesome_toolbar); setSupportActionBar(toolbar);

24
「別のユーザーがすでに互換性のないバージョンをこのデバイスにインストールしているため、このアプリをインストールできません」
Playストアから自分のアプリをインストールしようとすると、「別のユーザーがすでに互換性のないバージョンをこのデバイスにインストールしているため、このアプリをインストールできません」と表示されます 注-デバッグバージョンをアンインストールし、キャッシュもクリアしました。それでもPlayストアからインストールできません。 私の電話はルート化されていません。そのため、stackoverflowに関する同様の別の回答が示唆しているように、ルートファイルエクスプローラーを使用してデータをクリアすることはできません。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.