Created
October 12, 2012 16:46
-
-
Save adavis/3880189 to your computer and use it in GitHub Desktop.
Search Layout XML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item > | |
<shape android:shape="rectangle"> | |
<solid android:color="@color/light_blue"/> | |
</shape> | |
</item> | |
<item android:bottom="2dp" android:top="2dp" android:left="2dp" android:right="2dp"> | |
<shape android:shape="rectangle"> | |
<solid android:color="@android:color/black"/> | |
</shape> | |
</item> | |
</layer-list> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<RelativeLayout | |
android:id="@+id/searchTextLayout" | |
android:layout_width="match_parent" | |
android:layout_height="50dip" | |
android:orientation="horizontal" | |
android:layout_marginBottom="20dip" | |
android:layout_marginTop="40dip" | |
android:layout_marginLeft="30dip" | |
android:layout_marginRight="30dip" | |
android:layout_alignParentLeft="true" | |
android:layout_alignParentTop="true" > | |
<ImageButton | |
android:id="@+id/searchTextButton" | |
android:layout_width="wrap_content" | |
android:layout_height="match_parent" | |
android:background="@color/light_blue" | |
android:scaleType="fitCenter" | |
android:layout_alignParentLeft="true" | |
android:src="@drawable/search_page_search_icon" | |
android:contentDescription="@string/picture" | |
/> | |
<EditText | |
android:id="@+id/searchText" | |
android:layout_toRightOf="@id/searchTextButton" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:padding="8dp" | |
android:textColor="@android:color/white" | |
android:background="@drawable/background_black_border_full" /> | |
</RelativeLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment