Nagram/TMessagesProj/src/main/res/drawable/bar_selector_picker.xml

27 lines
868 B
XML
Raw Normal View History

2014-06-12 01:13:15 +00:00
<!--
~ This is the source code of Telegram for Android v. 1.4.x.
~ It is licensed under GNU GPL v. 2 or later.
~ You should have received a copy of the license in this archive (see LICENSE).
~
~ Copyright Nikolai Kudashov, 2013-2014.
-->
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape android:shape="rectangle">
<solid android:color="#ff3d3d3d" />
</shape>
</item>
<item android:state_focused="true">
<shape android:shape="rectangle">
<solid android:color="#ff3d3d3d" />
</shape>
</item>
<item android:state_selected="true">
<shape android:shape="rectangle">
<solid android:color="#ff3d3d3d" />
</shape>
</item>
<item android:drawable="@drawable/transparent" />
</selector>