147 lines
5.6 KiB
XML
147 lines
5.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/xml_background_topbar">
|
|
|
|
<Button
|
|
android:id="@+id/topbar_back_button"
|
|
android:layout_width="35dp"
|
|
android:layout_height="35dp"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginEnd="5dp"
|
|
android:layout_marginLeft="3dp"
|
|
android:layout_marginRight="5dp"
|
|
android:layout_marginStart="3dp"
|
|
android:adjustViewBounds="true"
|
|
android:background="@drawable/xml_selector_backbutton"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/topbar_levellayout"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginEnd="20dp"
|
|
android:layout_marginRight="20dp"
|
|
android:layout_toEndOf="@id/topbar_back_button"
|
|
android:layout_toRightOf="@id/topbar_back_button"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/topbar_leveldisplay"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="-5dp"
|
|
android:text="@string/topbar_level_placeholder"
|
|
android:textSize="25sp"/>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/topbar_levelprogress"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="6dp"
|
|
android:layout_marginBottom="5dp"
|
|
android:progress="50"
|
|
android:progressDrawable="@drawable/xml_layers_levelprogressbar"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/topbar_starview"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toEndOf="@id/topbar_levellayout"
|
|
android:layout_toRightOf="@id/topbar_levellayout"
|
|
android:background="@drawable/currency_star"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/topbar_energyview"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="20dp"
|
|
android:layout_marginStart="20dp"
|
|
android:layout_toEndOf="@+id/topbar_starcount"
|
|
android:layout_toRightOf="@+id/topbar_starcount"
|
|
android:background="@drawable/currency_energy"/>
|
|
|
|
<TextView
|
|
android:id="@+id/topbar_starcount"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toEndOf="@+id/topbar_starview"
|
|
android:layout_toRightOf="@+id/topbar_starview"
|
|
android:text="@string/placeholder_number"
|
|
android:textSize="25sp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/topbar_energycount"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toEndOf="@+id/topbar_energyview"
|
|
android:layout_toRightOf="@+id/topbar_energyview"
|
|
android:text="@string/placeholder_number"
|
|
android:textSize="25sp"/>
|
|
|
|
<Button
|
|
android:id="@+id/topbar_settings"
|
|
android:layout_width="35dp"
|
|
android:layout_height="35dp"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginRight="10dp"
|
|
android:layout_marginEnd="10dp"
|
|
android:background="@drawable/xml_selector_settingsbutton"/>
|
|
|
|
<Button
|
|
android:id="@+id/topbar_toolshop"
|
|
style="@style/GameButton"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginRight="20dp"
|
|
android:layout_marginEnd="20dp"
|
|
android:layout_toLeftOf="@+id/topbar_settings"
|
|
android:layout_toStartOf="@+id/topbar_settings"
|
|
android:background="@drawable/xml_selector_toolshopbutton"/>
|
|
|
|
<Button
|
|
android:id="@+id/topbar_shapeshop"
|
|
style="@style/GameButton"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginRight="20dp"
|
|
android:layout_marginEnd="20dp"
|
|
android:layout_toLeftOf="@+id/topbar_toolshop"
|
|
android:layout_toStartOf="@id/topbar_toolshop"
|
|
android:background="@drawable/xml_selector_shapeshopbutton"/>
|
|
|
|
<TextView
|
|
android:id="@+id/topbar_starcount_decrease"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignEnd="@+id/topbar_starcount"
|
|
android:layout_alignRight="@id/topbar_starcount"
|
|
android:layout_centerVertical="true"
|
|
android:text="@string/placeholder_number"
|
|
android:textSize="20sp"
|
|
android:visibility="invisible"/>
|
|
|
|
<TextView
|
|
android:id="@+id/topbar_energycount_decrease"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignEnd="@+id/topbar_energycount"
|
|
android:layout_alignRight="@id/topbar_energycount"
|
|
android:layout_centerVertical="true"
|
|
android:text="@string/placeholder_number"
|
|
android:textSize="20sp"
|
|
android:visibility="invisible"/>
|
|
</RelativeLayout> |