Browse Source

Fixed alignment of embedded refresh button and url input field

David A. Velasco 12 years ago
parent
commit
912d867f27
1 changed files with 3 additions and 1 deletions
  1. 3 1
      res/layout/account_setup.xml

+ 3 - 1
res/layout/account_setup.xml

@@ -53,11 +53,13 @@
 	        android:id="@+id/hostUrlFrame"
 			android:layout_width="match_parent"
 			android:layout_height="wrap_content"
+            android:layout_marginBottom="10dp"
 	        >
 			<EditText
 				android:id="@+id/hostUrlInput"
 				android:layout_width="match_parent"
 				android:layout_height="wrap_content"
+				android:layout_gravity="bottom"
 				android:hint="@string/auth_host_url"
 				android:inputType="textUri"
 				android:drawablePadding="5dp"
@@ -75,7 +77,7 @@
 			    android:scaleType="fitCenter"
 			    android:src="@drawable/ic_action_refresh_black"
             	android:onClick="onRefreshClick"
-				android:visibility="gone"
+				android:visibility="visible"
 				android:background="@android:color/transparent"
 			    />
 		</FrameLayout>