100 lines
5.6 KiB
XML
100 lines
5.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent" android:background="@drawable/background">
|
|
|
|
|
|
<LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical">
|
|
<LinearLayout android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="center_horizontal" >
|
|
<LinearLayout android:layout_height="wrap_content" android:layout_width="wrap_content"
|
|
android:background="@drawable/headliner" android:orientation="horizontal" android:id="@+id/Headliner" >
|
|
<ImageView android:src="@drawable/headline_osmand_icon"
|
|
android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_marginLeft="12dp"/>
|
|
<TextView android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/AppName"
|
|
android:layout_marginLeft="0dp" android:layout_weight="1" android:layout_marginTop="8dp"
|
|
android:text="OsmAnd+" android:textColor="#000000" android:typeface="serif" android:textSize="22sp"/>
|
|
<TextView android:layout_height="wrap_content" android:layout_width="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:text="0.5.1 beta(b6)" android:textColor="#000000" android:typeface="serif" android:id="@+id/TextVersion"
|
|
android:textSize="20sp"/>
|
|
<ImageView android:src="@drawable/headliner_close" android:layout_marginRight="18dp" android:clickable="true" android:id="@+id/CloseButton"
|
|
android:layout_marginTop="6dp"
|
|
android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_marginLeft="7dp"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<TableLayout android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<TableRow android:layout_height = "wrap_content" android:layout_width = "fill_parent">
|
|
<LinearLayout android:id="@+id/MapButton" android:background="@drawable/button_left" android:orientation="vertical" android:clickable="true"
|
|
android:layout_weight="3" android:layout_width="wrap_content" android:layout_height="284dp">
|
|
<ImageView
|
|
android:src="@drawable/button_icon_map"
|
|
android:scaleType="center"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView android:layout_height="wrap_content" android:layout_width="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="45dp" android:layout_marginRight="24dp"
|
|
android:text="@string/map_Button" android:typeface="serif" android:textColor="#000000"
|
|
android:textSize="27sp"/>
|
|
</LinearLayout>
|
|
<LinearLayout android:layout_weight="1" android:layout_width="wrap_content" android:layout_height="fill_parent" />
|
|
<LinearLayout android:id="@+id/SearchButton" android:background="@drawable/button_right" android:orientation="vertical" android:clickable="true"
|
|
android:layout_weight="3" android:layout_width="wrap_content" android:layout_height="284dp">
|
|
<ImageView
|
|
android:src="@drawable/button_icon_search"
|
|
android:scaleType="center"
|
|
android:layout_gravity="center_vertical|right"
|
|
android:layout_weight="1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<TextView android:layout_height="wrap_content" android:layout_width="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="45dp" android:layout_marginLeft="24dp"
|
|
android:text="@string/search_button" android:typeface="serif" android:textColor="#000000"
|
|
android:textSize="27sp"/>
|
|
</LinearLayout>
|
|
</TableRow>
|
|
<TableRow android:layout_height = "wrap_content" >
|
|
<LinearLayout android:id="@+id/FavoritesButton" android:background="@drawable/button_left" android:orientation="vertical"
|
|
android:layout_weight="3" android:layout_width="wrap_content" android:layout_height="284dp">
|
|
<ImageView
|
|
android:src="@drawable/button_icon_favorites"
|
|
android:scaleType="center"
|
|
android:layout_gravity="top"
|
|
android:layout_weight="1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView android:layout_height="wrap_content" android:layout_width="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="45dp" android:layout_marginRight="24dp"
|
|
android:text="@string/favorites_Button" android:typeface="serif" android:textColor="#000000"
|
|
android:textSize="27sp"/>
|
|
</LinearLayout>
|
|
<LinearLayout android:layout_weight="1" android:layout_height="fill_parent" />
|
|
<LinearLayout android:id="@+id/SettingsButton" android:background="@drawable/button_right" android:orientation="vertical"
|
|
android:layout_weight="3" android:layout_width="wrap_content" android:layout_height="284dp">
|
|
<ImageView
|
|
android:src="@drawable/button_icon_settings"
|
|
android:scaleType="center"
|
|
android:layout_gravity="top|right"
|
|
android:layout_weight="1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<TextView android:layout_height="wrap_content" android:layout_width="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginBottom="45dp" android:layout_marginLeft="24dp"
|
|
android:text="@string/settings_Button" android:typeface="serif" android:textColor="#000000"
|
|
android:textSize="27sp"/>
|
|
</LinearLayout>
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|