15

そのため、レイアウトに単純な影を表示する方法を Web で検索してきましたが、それを行う適切な方法はありません。
私が見つけたのは、影を適用したいレイアウトの背後にレイアウトを作成し、それを微調整して透明にするなどの回避策だけでした。

まったく新しいレイアウトを追加せずに単純なレイアウト シャドウを作成する他の方法はありますか?

4

3 に答える 3

47

この問題の解決策を思いつくことができました。それはView、有名なレイアウトの下に を追加して、ある色から別の色へのグラデーションを表示することです。
通常、最初の色は暗い灰色がかった色で、2 番目の色は背景の色になります(私の場合は、明るい灰色の背景を使用するため、完全に白ではありません)。

レイアウト + ビュー

xml は次のようになります。

...
<LinearLayout
    android:id="@+id/headerLayout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:background="@drawable/headerImage"
        android:orientation="vertical" />

    <View
        android:layout_width="fill_parent"
        android:layout_height="5dip"
        android:background="@drawable/drop_shadow" >
    </View>
</LinearLayout>
...

drop_shadow.xml :

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">    
    <gradient
        android:startColor="#404040"
        android:endColor="#F1F1F1"
        android:angle="270"
        >
    </gradient>
</shape>

私はそれが役立つことを願っています;)

于 2013-01-22T16:49:28.197 に答える
7

android.support.v4.view.ViewCompat静的メソッドを使用してビューの標高を設定するクラスを使用できますsetElevation。このクラスは、後方互換性のある方法で API レベル 4 の後に導入されたビュー内の機能にアクセスするためのヘルパーです。

ベース標高はピクセル単位です。

View mFab = (View) findViewById(R.id.floating_button);
ViewCompat.setElevation(mFab, 12);
于 2016-05-20T12:41:40.443 に答える