project_files/Android-build/SDL-android-project/res/layout/notification.xml
author Wuzzy <Wuzzy2@mail.ru>
Sat, 21 Oct 2017 23:03:52 +0200
changeset 12738 353cb2ce6f9c
parent 5397 4ae1b082e4ba
permissions -rw-r--r--
Fix AddAmmo setting ammo to 99 when trying to add infinite ammo This affected the portal mission, the crate only gave you 99 portal guns instead of infinite.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="3dp">
	<ImageView
		android:id="@+id/icon"
    	android:layout_width="wrap_content" 
    	android:layout_height="fill_parent"
    	android:scaleType="centerInside"
    	android:src="@drawable/icon"/>
    
    <TextView
    	android:id="@+id/title"
    	android:layout_width="wrap_content"
    	android:layout_height="wrap_content"
    	android:layout_toRightOf="@id/icon"
    	android:text="@string/notification_title"
    	android:textColor="#000"
    	android:textSize="17dp"
    	android:textStyle="bold"/>
    			
	<TextView
    	android:id="@+id/progressbar_sub"
    	android:layout_width="wrap_content"
    	android:layout_height="wrap_content"
    	android:layout_toRightOf="@id/icon"
    	android:layout_alignParentBottom="true"
    	android:text="@string/notification_title"
    	android:textColor="#000"
    	android:textSize="10dp"/> 	
	<ProgressBar
		android:id="@+id/notification_progress"
		android:layout_width="fill_parent"
		android:layout_height="wrap_content"
		android:layout_toRightOf="@id/icon"
		android:layout_below="@id/title"
		android:layout_above="@id/progressbar_sub"
		android:progressDrawable="@android:drawable/progress_horizontal"
		android:indeterminate="false" android:indeterminateOnly="false"
		android:paddingRight="5dp"
		android:paddingTop="5dp"/>   

</RelativeLayout>