Questions tagged «android-5.0-lollipop»

Android Lollipop(以前称为“ Android L”)首次在Google I / O 2014上展出。最终名称在10月15日得到确认。它支持API级别21。

4
如何在Android L中为CardView小部件设置填充
我正在使用android:paddingLeft和android:paddingTop设置新CardView窗口小部件的填充,但是它不起作用。 我可以为里面的所有控件设置边距,这CardView是一种解决方法,但是如果控件太多,这将很麻烦。 如何为新的cardview小部件设置填充? <android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto" android:id="@+id/card_view" android:layout_gravity="center" android:layout_width="match_parent" android:layout_height="200dp" android:paddingLeft="20dp" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="20dp" android:paddingBottom="@dimen/activity_vertical_margin" card_view:cardCornerRadius="2dp"> <TextView android:id="@+id/info_text" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Hello World!"/> </android.support.v7.widget.CardView>

6
Lollipop AppCompat-v7 21-属性“主题”已经定义
我想升级项目以支持Android Lollipop和API 21,因此我将依赖项下的AppCompat版本更改为21.0.0,并将目标SDK更改为21。 但是现在,当我尝试与gradle文件同步项目时,它给了我102 errors以前没有的东西: 1个错误"Attribute 'theme' has already defined"-由我的colors.XML文件给出, 另有101个错误("no resources found that matches the given name..."大部分是重大错误)-由"build/intermediates/exploded-aar/com.android.support/appcompat-v7/21.0.0/res/values-v11/values.XML"。 已使用Android Studio 0.8.9 Beta更新了Android SDK软件中的所有SDK工具。 有人可以帮忙吗?谢谢。

5
Android 5.0 android:elevation适用于View,但不适用于Button?
在SDK Manager的Android 5.0示例中,有ElevationBasic示例。它显示了两个View对象:一个圆形和一个正方形。该圈子已android:elevation设置为30dp: <?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2014 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law …

11
Android 5.0(L)服务意图必须在Google Analytics(分析)中明确显示
我的代码在<5版本中有效,但是在Android 5.0中,我遇到了一个我不太了解的问题。 10-23 10:18:18.945: E/AndroidRuntime(8987): java.lang.IllegalArgumentException: Service Intent must be explicit: Intent { act=com.google.android.gms.analytics.service.START (has extras) } 即使在现在,我的代码仍适用于4.4.4及更低版本。那我该怎么办?我将在下面发布相关代码。另外,在谷歌搜索期间,我发现了有关java.lang.IllegalArgumentException的帖子:关于Android 5.0,服务意图必须是明确的,但我不明白这是什么意思。 表现 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="xxxxx.android.phone.xxxxx" android:versionCode="3" android:versionName="v1.2.4065" > <uses-sdk android:minSdkVersion="12" android:targetSdkVersion="21" /> <!-- Required for Google Analytics --> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <!-- For push notifications (GCM) --> <permission android:name="xxxxx.android.phone.xxxxx.permission.C2D_MESSAGE" android:protectionLevel="signature" /> <uses-permission …

3
Android 5.0:如何更改最近的应用标题颜色?
我正在使用AppCompat并且主题正在扩展Theme.AppCompat.Light.DarkActionBar。 在Android 5 Lollipop中,当我按下“最近使用的应用程序”按钮时,我的应用程序在ActionBar中显示为黑色标题而不是白色标题。 当我进入应用程序时,一切看起来都很好。 如何在最近的应用程序视图中更改标题颜色? 编辑:刚发现,如果我使用较暗colorPrimary,标题将变为白色。我仍然需要一种方法来强制白色标题使用原始颜色。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.