1

編集テキストに影を追加することを計画していました。影を追加する方法は知っていますが、セレクターも追加したいのですが、セレクターとシャドウを同時に追加するにはどうすればよいですか?

セレクタ:

    <?xml version="1.0" encoding="utf-8"?>
<!--  res/drawable/rounded_edittext.xml -->
<selector xmlns:android="http://schemas.android.com/apk/res/android">

<item android:state_pressed="true" android:state_focused="true">
    <shape>
        <solid
            android:color="#3f3f3f"/>
        <stroke
            android:width="2.3dp"
            android:color="#656565" />
          <corners
            android:radius="2dp" />    
    </shape>
</item>

<item android:state_pressed="true" android:state_focused="false">
    <shape>
        <solid
            android:color="#3f3f3f"/>
        <stroke
            android:width="2.3dp"
            android:color="#656565" />      
          <corners
            android:radius="2dp" />        
    </shape>
</item>

<item android:state_pressed="false" android:state_focused="true">
    <shape>
        <solid
            android:color="#3f3f3f"/>
        <stroke
            android:width="2.3dp"
            android:color="#656565" />  
          <corners
            android:radius="2dp" />                           
    </shape>
</item>

<item android:state_pressed="true" android:state_focused="true">
    <shape>
        <stroke
            android:width="2.3dp"
            android:color="#F6EBC9" />
         <corners
            android:radius="10dp" />
    </shape>
</item>

<item android:state_enabled="true">
    <shape>
        <solid
            android:color="#3f3f3f"/>
        <padding 
                android:left="4dp"
                android:top="4dp"
                android:right="4dp"
                android:bottom="4dp"
            />
    </shape>
</item>

</selector>

影の多い:

  <?xml version="1.0" encoding="utf-8"?>
 <layer-list xmlns:android="http://schemas.android.com/apk/res/android">

<!-- most improtant is order of layers -->

<!-- Bottom right side 2dp Shadow -->
<item >
    <shape android:shape="rectangle">
        <solid android:color="#000000" />          
    </shape>
</item>

<!-- Bottom 2dp Shadow -->
<item>
    <shape android:shape="rectangle">
        <solid android:color="#000000" />  
    </shape>
</item>

<!-- White Top color -->
<item android:bottom="3px" android:right="3px">
    <shape android:shape="rectangle">
        <solid android:color="#FFFFFF" />          
    </shape>
</item>

編集テキスト:

 <EditText
    android:id="@+id/searchScreen2Edittext"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/textinputborder"
    android:ems="10"
    android:hint="Search Bus Station..."
    android:imeOptions="actionDone"
    android:inputType="textVisiblePassword"
    android:padding="8dip"
    android:textSize="18sp"

    android:shadowColor="#000000"
    android:shadowDx="1.2"
    android:shadowDy="1.2"
    android:shadowRadius="1.5"
    >

両方を実装する方法がわかりません.2つの背景を同時に追加できます..どうすればできますか?

4

0 に答える 0