1st version that works
This commit is contained in:
64
libSafeMobile/src/main/res/layout-w650dp/titled_combobox.xml
Normal file
64
libSafeMobile/src/main/res/layout-w650dp/titled_combobox.xml
Normal file
@ -0,0 +1,64 @@
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/titleCombo"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_marginBottom="2sp"
|
||||
android:text="@string/Contacts"
|
||||
android:textColor="#000000"
|
||||
android:textSize="20sp"
|
||||
android:textStyle="bold" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/layoutCombo"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/titleCombo"
|
||||
android:background="@drawable/bg_selector_combobox"
|
||||
android:gravity="center_vertical|left"
|
||||
android:clickable="true"
|
||||
android:orientation="horizontal">
|
||||
<ImageView
|
||||
android:id="@+id/imageViewCombo"
|
||||
android:layout_width="24sp"
|
||||
android:layout_height="24sp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="fitCenter"
|
||||
android:src="@drawable/call_private_green_small"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_marginRight="2sp"
|
||||
android:layout_marginLeft="2sp"
|
||||
android:layout_weight="0"
|
||||
android:contentDescription="@string/no"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/textViewComboValue"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text=""
|
||||
android:maxLines="1"
|
||||
android:textColor="#000000"
|
||||
android:textSize="20sp"
|
||||
android:textStyle="bold"
|
||||
android:layout_weight="1"
|
||||
android:gravity="right"
|
||||
android:paddingRight="3sp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageViewArrows"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="fill_parent"
|
||||
android:background="@drawable/ar"
|
||||
android:contentDescription="@string/no"
|
||||
android:layout_weight="0"/>
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
|
||||
</RelativeLayout>
|
Reference in New Issue
Block a user