Initial commit
This commit is contained in:
42
resources/res/layout/recycler_item_country_code.xml
Normal file
42
resources/res/layout/recycler_item_country_code.xml
Normal file
@@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:paddingLeft="42dp"
|
||||
android:paddingRight="42dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<TextView
|
||||
android:textSize="@dimen/theme_14sp"
|
||||
android:textColor="@color/theme_txt"
|
||||
android:gravity="center_vertical"
|
||||
android:id="@+id/countryTextView"
|
||||
android:background="@drawable/sel_list_item"
|
||||
android:paddingLeft="26dp"
|
||||
android:paddingTop="10dp"
|
||||
android:paddingBottom="10dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="10dp"
|
||||
android:layout_marginRight="10dp"
|
||||
android:minHeight="@dimen/theme_list_item_size"
|
||||
android:layout_centerVertical="true"/>
|
||||
<TextView
|
||||
android:textSize="@dimen/theme_11sp"
|
||||
android:textColor="@color/theme_txt_light"
|
||||
android:gravity="center_vertical"
|
||||
android:id="@+id/codeTextView"
|
||||
android:padding="@dimen/dp_10"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginRight="26dp"
|
||||
android:minHeight="39dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"/>
|
||||
<View
|
||||
android:id="@+id/divider"
|
||||
android:background="@drawable/shape_list_divider"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0.34dp"
|
||||
android:layout_marginLeft="26dp"
|
||||
android:layout_marginRight="26dp"
|
||||
android:layout_below="@+id/countryTextView"/>
|
||||
</RelativeLayout>
|
||||
Reference in New Issue
Block a user