project_files/Android-build/SDL-android-project/res/layout/team_creation_entry.xml
Hedgeroid:
- (hopefully) completed the frontlib JNA mappings
- added documentation
- Changed more code to use frontlib for ini reading/writing
- tried to make everything work again that was working before
- Teamlist can now be used to add and remove teams
- Netplay now correctly handles team additions when being room chief
- Fixed TeamCreatorActivity so that editing teams works
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/box"
android:layout_margin="3dp">
<Spinner
android:id="@+id/spinTeam1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_toRightOf="@+id/btnTeam1"
android:background="@drawable/dropdown"/>
<EditText
android:id="@+id/txtTeam1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/spinTeam1"
android:background="@drawable/box"
android:gravity="center"
android:textColor="#FFF"
android:text="Arnold"/>
<ImageButton
android:id="@id/btnTeam1"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignLeft="@id/txtTeam1"
android:layout_above="@id/txtTeam1"
android:layout_alignTop="@id/spinTeam1"
android:adjustViewBounds="true"
android:scaleType="centerInside"
android:background="@android:color/transparent"
android:src="@drawable/dice"/>
</RelativeLayout>
</merge>