author | Xeli |
Sun, 21 Aug 2011 19:57:23 +0200 | |
branch | hedgeroid |
changeset 5633 | 443b7c6543e5 |
parent 5506 | 2b0c4fcde4c6 |
child 7508 | 763d3961400b |
permissions | -rw-r--r-- |
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 | 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 | 4 |
android:id="@+id/teamColor" |
5506 | 5 |
android:layout_width="fill_parent" |
6 |
android:layout_height="fill_parent" |
|
7 |
android:background="#8FFF" |
|
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 | 16 |
<ImageView |
5633 | 17 |
|
5506 | 18 |
android:layout_height="wrap_content" |
19 |
android:layout_width="wrap_content" |
|
20 |
android:layout_alignParentRight="true" |
|
21 |
android:layout_centerVertical="true" |
|
22 |
android:adjustViewBounds="true" |
|
23 |
android:scaleType="centerInside" |
|
24 |
android:background="#FDA"/> |
|
25 |
<ImageView |
|
26 |
android:id="@+id/teamCount" |
|
27 |
android:layout_height="fill_parent" |
|
28 |
android:layout_width="wrap_content" |
|
5633 | 29 |
android:layout_alignParentRight="true" |
5506 | 30 |
android:layout_alignTop="@id/imgDifficulty" |
31 |
android:layout_alignBottom="@id/imgDifficulty" |
|
32 |
android:adjustViewBounds="true" |
|
33 |
android:scaleType="centerInside" |
|
34 |
android:src="@drawable/teamcount7"/> |
|
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 | 38 |
android:layout_width="wrap_content" |
39 |
android:layout_toRightOf="@id/imgDifficulty" |
|
40 |
android:layout_toLeftOf="@id/teamCount" |
|
41 |
android:layout_alignTop="@id/imgDifficulty" |
|
42 |
android:layout_alignBottom="@id/imgDifficulty" |
|
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 | 45 |
</RelativeLayout> |