project_files/Android-build/SDL-android-project/res/layout/team_selection_entry.xml
author Wuzzy <Wuzzy2@mail.ru>
Fri, 12 Oct 2018 03:40:21 +0200
changeset 13881 99b265e0d1d0
parent 7508 763d3961400b
permissions -rw-r--r--
Drop internal PhysFS, bump PhysFS requirement to 3.0.0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5467
88e25840f532 Main activities for starting up the game, changing gameconfig, selecting and creating teams with their respective layouts and values
Xeli
parents:
diff changeset
     1
<?xml version="1.0" encoding="utf-8"?>
5506
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
     2
<RelativeLayout
5467
88e25840f532 Main activities for starting up the game, changing gameconfig, selecting and creating teams with their respective layouts and values
Xeli
parents:
diff changeset
     3
  xmlns:android="http://schemas.android.com/apk/res/android"
5633
443b7c6543e5 cosmetic tweak in the teamselection menu
Xeli
parents: 5506
diff changeset
     4
  android:id="@+id/teamColor"
5506
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
     5
  android:layout_width="fill_parent"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
     6
  android:layout_height="fill_parent"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
     7
  android:background="#8FFF"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
     8
  android:padding="3dip">
5467
88e25840f532 Main activities for starting up the game, changing gameconfig, selecting and creating teams with their respective layouts and values
Xeli
parents:
diff changeset
     9
  
88e25840f532 Main activities for starting up the game, changing gameconfig, selecting and creating teams with their respective layouts and values
Xeli
parents:
diff changeset
    10
  <ImageView
88e25840f532 Main activities for starting up the game, changing gameconfig, selecting and creating teams with their respective layouts and values
Xeli
parents:
diff changeset
    11
  	android:id="@+id/imgDifficulty"
88e25840f532 Main activities for starting up the game, changing gameconfig, selecting and creating teams with their respective layouts and values
Xeli
parents:
diff changeset
    12
  	android:layout_height="fill_parent"
88e25840f532 Main activities for starting up the game, changing gameconfig, selecting and creating teams with their respective layouts and values
Xeli
parents:
diff changeset
    13
  	android:layout_width="wrap_content"
88e25840f532 Main activities for starting up the game, changing gameconfig, selecting and creating teams with their respective layouts and values
Xeli
parents:
diff changeset
    14
  	android:adjustViewBounds="true"
88e25840f532 Main activities for starting up the game, changing gameconfig, selecting and creating teams with their respective layouts and values
Xeli
parents:
diff changeset
    15
  	android:scaleType="centerInside"/>
5506
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    16
  <ImageView
5633
443b7c6543e5 cosmetic tweak in the teamselection menu
Xeli
parents: 5506
diff changeset
    17
  	
5506
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    18
  	android:layout_height="wrap_content"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    19
  	android:layout_width="wrap_content"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    20
  	android:layout_alignParentRight="true"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    21
  	android:layout_centerVertical="true"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    22
  	android:adjustViewBounds="true"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    23
  	android:scaleType="centerInside"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    24
  	android:background="#FDA"/>
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    25
  <ImageView
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    26
  	android:id="@+id/teamCount"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    27
  	android:layout_height="fill_parent"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    28
  	android:layout_width="wrap_content"
5633
443b7c6543e5 cosmetic tweak in the teamselection menu
Xeli
parents: 5506
diff changeset
    29
  	android:layout_alignParentRight="true"
5506
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    30
  	android:layout_alignTop="@id/imgDifficulty"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    31
  	android:layout_alignBottom="@id/imgDifficulty"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    32
  	android:adjustViewBounds="true"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    33
  	android:scaleType="centerInside"
7508
763d3961400b Hedgeroid: Frantic scrabbling toward the deadline
Medo <smaxein@googlemail.com>
parents: 5633
diff changeset
    34
  	android:src="@drawable/hogcount"/>
5467
88e25840f532 Main activities for starting up the game, changing gameconfig, selecting and creating teams with their respective layouts and values
Xeli
parents:
diff changeset
    35
  <TextView
88e25840f532 Main activities for starting up the game, changing gameconfig, selecting and creating teams with their respective layouts and values
Xeli
parents:
diff changeset
    36
  	android:id="@+id/txtName"
88e25840f532 Main activities for starting up the game, changing gameconfig, selecting and creating teams with their respective layouts and values
Xeli
parents:
diff changeset
    37
  	android:layout_height="fill_parent"
5506
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    38
  	android:layout_width="wrap_content"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    39
  	android:layout_toRightOf="@id/imgDifficulty"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    40
  	android:layout_toLeftOf="@id/teamCount"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    41
  	android:layout_alignTop="@id/imgDifficulty"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    42
  	android:layout_alignBottom="@id/imgDifficulty"
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    43
  	android:gravity="center"
5467
88e25840f532 Main activities for starting up the game, changing gameconfig, selecting and creating teams with their respective layouts and values
Xeli
parents:
diff changeset
    44
  	android:textColor="#FFF"/>
5506
2b0c4fcde4c6 Added color and team hog count
Xeli
parents: 5467
diff changeset
    45
</RelativeLayout>