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

19
Androidの「高度」に影が表示されない
ListViewがあり、各リストアイテムの下に影を表示します。私はAndroid Lollipopの新しい標高機能を使用して、影を落とすビューにZを設定し、ActionBar(技術的にはLollipopのツールバー)でこれを効果的に実行しています。Lollipopの標高を使用していますが、何らかの理由でリストアイテムの下に影が表示されません。次に、各リストアイテムのレイアウトを設定する方法を示します。 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:orientation="vertical" style="@style/block" android:gravity="center" android:layout_gravity="center" android:background="@color/lightgray" > <RelativeLayout android:layout_width="300dp" android:layout_height="300dp" android:layout_marginLeft="40dp" android:layout_marginRight="40dp" android:layout_marginTop="20dp" android:layout_marginBottom="20dp" android:elevation="30dp" > <ImageView android:id="@+id/documentImageView" android:layout_width="match_parent" android:layout_height="match_parent" android:scaleType="centerCrop" /> <LinearLayout android:orientation="vertical" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/alphared" android:layout_alignParentBottom="true" > <appuccino.simplyscan.Extra.CustomTextView android:id="@+id/documentName" android:layout_width="match_parent" android:layout_height="wrap_content" android:textColor="@color/white" app:typeface="light" android:paddingLeft="16dp" android:paddingTop="8dp" android:paddingBottom="4dp" android:singleLine="true" android:text="New Document" android:textSize="27sp"/> <appuccino.simplyscan.Extra.CustomTextView …

5
Android 5.0のAppCompat CardViewでXMLに標高を設定する
私が理解していることから、プレビュー段階の早い段階でCardView、JavaのハックなしではにのみXMLで標高を設定する方法はないように見えました。公式リリースが出たので、標高を設定するJavaコードを書かずにXMLでこれを行う方法はありますか? 何もcard_view:cardElevationしないようにしようとしました。私は5.0のエミュレーターを使用しているとき、すべてがうまくいったと思っていました。しかし、私は実際のデバイスで公式バージョンを使用しているので、私のすべてのCardViewの消えました ロリポップ前、それは素晴らしい働きをします。 ここに私の完全なxmlがあります <?xml version="1.0" encoding="utf-8"?> <android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:card_view="http://schemas.android.com/apk/res-auto" android:orientation="horizontal" android:layout_width="match_parent" android:id="@+id/cv1" card_view:cardElevation="4dp" android:layout_margin="6dp" card_view:cardCornerRadius="3dp" android:layout_height="match_parent">
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.