forked from organicmaps/organicmaps-tmp
[android] Fix some layout params.
This commit is contained in:
parent
dda6932dc8
commit
17952944f2
3 changed files with 12 additions and 9 deletions
|
@ -7,8 +7,8 @@
|
|||
|
||||
<ImageView
|
||||
android:id="@+id/country_flag"
|
||||
android:layout_width="?android:attr/listPreferredItemHeight"
|
||||
android:layout_height="?android:attr/listPreferredItemHeight"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="5dip"
|
||||
android:scaleType="center"
|
||||
android:layout_alignParentLeft="true"
|
||||
|
@ -17,7 +17,7 @@
|
|||
<ImageView
|
||||
android:id="@+id/show_country"
|
||||
android:layout_width="?android:attr/listPreferredItemHeight"
|
||||
android:layout_height="?android:attr/listPreferredItemHeight"
|
||||
android:layout_height="wrap_content"
|
||||
android:scaleType="center"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
|
@ -33,14 +33,14 @@
|
|||
|
||||
<TextView
|
||||
android:id="@+id/title"
|
||||
android:text="XXXX"
|
||||
android:text="Xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceLarge"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/summary"
|
||||
android:text="YYYY"
|
||||
android:text="Yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"/>
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
|
||||
<ImageView
|
||||
android:id="@+id/country_flag"
|
||||
android:layout_width="?android:attr/listPreferredItemHeight"
|
||||
android:layout_height="?android:attr/listPreferredItemHeight"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="5dip"
|
||||
android:scaleType="center"
|
||||
android:layout_alignParentLeft="true"
|
||||
|
@ -24,7 +24,7 @@
|
|||
|
||||
<TextView
|
||||
android:id="@+id/title"
|
||||
android:text="XXXX"
|
||||
android:text="Xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_toLeftOf="@id/disclosure_image"
|
||||
|
|
|
@ -7,15 +7,17 @@
|
|||
android:paddingRight="?android:attr/scrollbarSize">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/search_layout_1"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_toLeftOf="@+id/search_layout_2"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_alignParentLeft="true">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/name"
|
||||
android:text="Name"
|
||||
android:text="Long Feature Name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceLarge"/>
|
||||
|
@ -30,6 +32,7 @@
|
|||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/search_layout_2"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
|
|
Loading…
Add table
Reference in a new issue