hide pick-face-up checkbox for networked games

And tweak game-config layout
This commit is contained in:
Eric House 2017-03-15 07:25:54 -07:00
parent 4c9c5b3418
commit 006bf2e387
2 changed files with 6 additions and 2 deletions

View file

@ -1265,6 +1265,8 @@ public class GameConfigDelegate extends DelegateBase
} else { } else {
String connString = m_conTypes.toString( m_activity, true ); String connString = m_conTypes.toString( m_activity, true );
m_connLabel.setText( getString( R.string.connect_label_fmt, connString ) ); m_connLabel.setText( getString( R.string.connect_label_fmt, connString ) );
// hide pick-face-up button for networked games
findViewById( R.id.pick_faceup ).setVisibility( View.GONE );
} }
} }

View file

@ -77,8 +77,9 @@
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical" android:orientation="vertical"
android:layout_marginTop="5sp" android:layout_marginTop="5sp"
android:layout_marginBottom="5sp" android:layout_marginBottom="5sp"
android:layout_marginLeft="6dp"
/> />
<LinearLayout android:layout_width="fill_parent" <LinearLayout android:layout_width="fill_parent"
@ -256,6 +257,7 @@
<LinearLayout android:layout_width="fill_parent" <LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="horizontal" android:orientation="horizontal"
android:layout_marginLeft="6dp"
> >
<TextView android:layout_height="wrap_content" <TextView android:layout_height="wrap_content"
android:layout_width="wrap_content" android:layout_width="wrap_content"