Questions tagged «android-appcompat»

App Compat支持库程序包包含几个可以包含在您的应用程序中的库。这些库均支持特定范围的Android平台版本和功能集。

3
Android 5.0:如何更改最近的应用标题颜色?
我正在使用AppCompat并且主题正在扩展Theme.AppCompat.Light.DarkActionBar。 在Android 5 Lollipop中,当我按下“最近使用的应用程序”按钮时,我的应用程序在ActionBar中显示为黑色标题而不是白色标题。 当我进入应用程序时,一切看起来都很好。 如何在最近的应用程序视图中更改标题颜色? 编辑:刚发现,如果我使用较暗colorPrimary,标题将变为白色。我仍然需要一种方法来强制白色标题使用原始颜色。

10
使ImageView适合CardView的宽度
我有一个CardView带圆角的,我想ImageView在顶部有一个像下面的材料设计指南中的示例所示的。 <android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto" android:id="@+id/card_view" android:layout_width="wrap_content" android:layout_height="wrap_content" card_view:cardCornerRadius="4dp"> <!-- ... --> </android.support.v7.widget.CardView> 然后在里面CardView我有这个ImageView <ImageView android:id="@+id/imageView" android:layout_width="fill_parent" android:layout_height="150dp" android:layout_alignParentLeft="true" android:layout_alignParentStart="true" android:layout_alignParentTop="true" android:scaleType="centerCrop" android:src="@drawable/default_cover" /> 如果我有card_view:cardCornerRadius设置,0dp则可以ImageView像我想要的那样适合卡片。 但是,材料设计准则规定,卡片应具有圆角,而不是正方形角。 我遇到的问题是,当我将设置card_view:cardCornerRadius为以外的其他值时 0dp,例如4dp,会发生以下情况: 可以看出,ImageView并不适合CardView。 我的问题是,当圆角ImageView出现CardView时,如何使它适合于布局。
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.