Fix layout of standalone credential activity

b/14144228

Change-Id: Ic75f2444b74e101d25afd312ba94f5df3e8204c3
This commit is contained in:
Tony Mantler 2014-04-18 11:06:24 -07:00
parent cdfffcf460
commit 7b350f101c
1 changed files with 13 additions and 16 deletions

View File

@ -13,23 +13,20 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/account_setup_fragment_container"
android:layout_width="match_parent"
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:orientation="vertical" >
<include
layout="@layout/account_setup_credentials_fragment"
android:layout_width="match_parent" >
<LinearLayout
style="@style/account_setup_fragment_container"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
android:layout_height="wrap_content"
android:orientation="vertical" >
<include
layout="@layout/account_setup_credentials_fragment"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<FrameLayout android:id="@+id/button_container"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include layout="@layout/account_settings_buttons" />
</FrameLayout>
</LinearLayout>
</LinearLayout>
</ScrollView>