-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5925c3b
commit 8d48ac1
Showing
134 changed files
with
2,010 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?xml version="1.0" encoding="utf-8" standalone="no"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" android:compileSdkVersion="23" android:compileSdkVersionCodename="6.0-2438415" android:installLocation="preferExternal" package="com.craftsman.go" platformBuildVersionCode="23" platformBuildVersionName="6.0-2438415"> | ||
<uses-feature android:glEsVersion="0x00020000" android:required="true"/> | ||
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/> | ||
<uses-permission android:name="android.permission.INTERNET"/> | ||
<uses-permission android:name="com.android.vending.BILLING"/> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
<uses-permission android:name="android.permission.VIBRATE"/> | ||
<application android:icon="@drawable/icon" android:label="@string/app_name"> | ||
<activity android:alwaysRetainTaskState="true" android:configChanges="fontScale|keyboard|keyboardHidden|locale|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode" android:debuggable="false" android:excludeFromRecents="false" android:label="@string/app_name_short" android:launchMode="singleTop" android:name="com.mojang.minecraftpe.MainActivity" android:screenOrientation="sensorLandscape" android:theme="@android:style/Theme.NoTitleBar.Fullscreen"> | ||
<meta-data android:name="android.app.lib_name" android:value="minecraftpe"/> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN"/> | ||
<category android:name="android.intent.category.LAUNCHER"/> | ||
</intent-filter> | ||
<intent-filter> | ||
<action android:name="android.intent.action.VIEW"/> | ||
<category android:name="android.intent.category.DEFAULT"/> | ||
<category android:name="android.intent.category.BROWSABLE"/> | ||
<data android:mimeType="text/plain" android:scheme="minecraft"/> | ||
</intent-filter> | ||
</activity> | ||
<meta-data android:name="xperiaplayoptimized_content" android:resource="@string/xperiaplayoptimized_content"/> | ||
<meta-data android:name="game_display_name" android:resource="@string/app_name"/> | ||
<meta-data android:name="game_icon" android:resource="@drawable/iconx"/> | ||
<uses-library android:name="xperiaplaycertified" android:required="false"/> | ||
<receiver android:name="com.amazon.device.iap.ResponseReceiver"> | ||
<intent-filter> | ||
<action android:name="com.amazon.inapp.purchasing.NOTIFY" android:permission="com.amazon.inapp.purchasing.Permission.NOTIFY" android:windowSoftInputMode="adjustResize"/> | ||
</intent-filter> | ||
</receiver> | ||
<activity android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode" android:exported="false" android:name="com.google.android.gms.ads.AdActivity" android:theme="@android:style/Theme.Translucent"/> | ||
<meta-data android:name="com.google.android.gms.version" android:value="12451000"/> | ||
<activity android:configChanges="fontScale|keyboard|keyboardHidden|locale|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode" android:hardwareAccelerated="true" android:name="com.unity3d.services.ads.adunit.AdUnitActivity" android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/> | ||
<activity android:configChanges="fontScale|keyboard|keyboardHidden|locale|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode" android:hardwareAccelerated="true" android:name="com.unity3d.services.ads.adunit.AdUnitTransparentActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"/> | ||
<activity android:configChanges="fontScale|keyboard|keyboardHidden|locale|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode" android:hardwareAccelerated="false" android:name="com.unity3d.services.ads.adunit.AdUnitTransparentSoftwareActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"/> | ||
<activity android:configChanges="fontScale|keyboard|keyboardHidden|locale|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode" android:hardwareAccelerated="false" android:name="com.unity3d.services.ads.adunit.AdUnitSoftwareActivity" android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/> | ||
<activity android:configChanges="keyboardHidden|orientation|screenSize" android:exported="false" android:name="com.facebook.ads.AudienceNetworkActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar"/> | ||
<activity android:configChanges="keyboardHidden|orientation|screenSize" android:exported="false" android:name="com.facebook.ads.internal.ipc.RemoteANActivity" android:process=":adnw" android:theme="@android:style/Theme.Translucent.NoTitleBar"/> | ||
<service android:exported="false" android:name="com.facebook.ads.internal.ipc.AdsProcessPriorityService"/> | ||
<service android:exported="false" android:name="com.facebook.ads.internal.ipc.AdsMessengerService" android:process=":adnw"/> | ||
<meta-data android:name="com.android.vending.derived.apk.id" android:value="1"/> | ||
</application> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:state_enabled="true" android:state_pressed="false" android:color="@color/buttonBorder" /> | ||
<item android:state_pressed="true" android:color="@color/buttonTextPressed" /> | ||
<item android:state_enabled="false" android:color="@color/buttonBorderDisabled" /> | ||
</selector> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector android:variablePadding="false" android:constantSize="true" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:state_enabled="true" android:state_pressed="false" android:drawable="@drawable/button_rest" /> | ||
<item android:state_pressed="true" android:drawable="@drawable/button_pressed" /> | ||
<item android:state_enabled="false" android:drawable="@drawable/button_disabled" /> | ||
</selector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape android:shape="rectangle" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<size android:height="@dimen/buttonHeight" /> | ||
<solid android:color="@color/buttonBack" /> | ||
<stroke android:width="@dimen/buttonBorder" android:color="@color/buttonBorderDisabled" /> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape android:shape="rectangle" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<size android:height="@dimen/buttonHeight" /> | ||
<solid android:color="@color/buttonBackPressed" /> | ||
<stroke android:width="@dimen/buttonBorder" android:color="@color/buttonBorder" /> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape android:shape="rectangle" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<size android:height="@dimen/buttonHeight" /> | ||
<solid android:color="@color/buttonBack" /> | ||
<stroke android:width="@dimen/buttonBorder" android:color="@color/buttonBorder" /> | ||
</shape> |
Oops, something went wrong.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:state_pressed="true" android:drawable="@drawable/xbid_button_state_pressed" /> | ||
<item android:state_focused="true" android:drawable="@drawable/xbid_button_state_focused" /> | ||
<item android:drawable="@drawable/xbid_button_state_normal" /> | ||
</selector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape android:shape="rectangle" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<size android:height="@dimen/xbid_bg_height" android:width="@dimen/xbid_bg_width" /> | ||
<solid android:color="@color/xbid_button_background" /> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape android:shape="rectangle" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<size android:height="@dimen/xbid_bg_height" android:width="@dimen/xbid_bg_width" /> | ||
<solid android:color="@color/xbid_button_background" /> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape android:shape="rectangle" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<size android:height="@dimen/xbid_bg_height" android:width="@dimen/xbid_bg_width" /> | ||
<solid android:color="@color/xbid_button_background" /> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape android:shape="rectangle" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<size android:height="@dimen/xbid_bg_height" android:width="@dimen/xbid_bg_width" /> | ||
<solid android:color="@color/xbid_button_background" /> | ||
<stroke android:width="@dimen/xbid_bg_stroke_width" android:color="@color/xbid_white_primary" /> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape android:shape="rectangle" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<solid android:color="#ff8080ff" /> | ||
<size android:height="50.0dip" android:width="50.0dip" /> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout style="@style/activity" | ||
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:msaui="http://schemas.android.com/apk/res-auto"> | ||
<FrameLayout android:id="@id/accountPickerBase" android:layout_width="fill_parent" android:layout_height="wrap_content" /> | ||
<ListView android:id="@id/listAccounts" android:layout_below="@id/accountPickerBase" style="@style/accountPickerListView" /> | ||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout style="@style/accountPickerUserTile" | ||
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:msaui="http://schemas.android.com/apk/res-auto"> | ||
<ImageView android:id="@id/imageUserTile" style="@style/userTileImageBidirectional" /> | ||
<com.microsoft.onlineid.ui.StyledTextView android:id="@id/textEmail" style="@style/accountPickerUserTileUserNameBidirectional" /> | ||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout style="@style/accountTile" | ||
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:msaui="http://schemas.android.com/apk/res-auto"> | ||
<com.microsoft.onlineid.ui.StyledTextView android:id="@id/textFirstLast" style="@style/userTileDisplayName" /> | ||
<com.microsoft.onlineid.ui.StyledTextView android:id="@id/textEmail" style="@style/userTileEmail" /> | ||
<ImageButton android:id="@id/userTileOverflowMenu" style="@style/accountTileOverflowMenu" /> | ||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout style="@style/accountPickerUserTile" | ||
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:msaui="http://schemas.android.com/apk/res-auto"> | ||
<ImageView android:id="@id/imageUserTile" android:src="@drawable/msa_add_icon" android:contentDescription="@string/account_menu_add_account" style="@style/userTileImageBidirectional" /> | ||
<com.microsoft.onlineid.ui.StyledTextView android:id="@id/textAddAccount" android:text="@string/account_menu_add_account" style="@style/accountPickerUserTileUserNameBidirectional" /> | ||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout android:orientation="vertical" android:id="@id/baseScreenView" style="@style/activity" | ||
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:msaui="http://schemas.android.com/apk/res-auto"> | ||
<com.microsoft.onlineid.internal.ui.ProgressView android:id="@id/baseScreenProgressView" android:focusable="false" android:visibility="invisible" android:layout_width="fill_parent" android:layout_height="@dimen/marginMedium" /> | ||
<com.microsoft.onlineid.ui.StyledTextView android:id="@id/baseScreenHeader" android:focusable="false" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/marginLarge" android:layout_marginTop="@dimen/marginSmall" android:layout_marginRight="@dimen/marginLarge" style="@style/textLargest" /> | ||
<com.microsoft.onlineid.ui.StyledTextView android:id="@id/baseScreenBody" android:focusable="false" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/marginLarge" android:layout_marginTop="@dimen/marginLarge" android:layout_marginRight="@dimen/marginLarge" style="@style/textLarge" /> | ||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout android:padding="@dimen/marginMedium" android:layout_width="fill_parent" android:layout_height="wrap_content" | ||
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:msaui="http://schemas.android.com/apk/res-auto"> | ||
<CheckBox android:id="@id/signOutCheckBox" style="@style/signOutCheckBoxBidirectional" /> | ||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout style="@style/activity" | ||
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:msaui="http://schemas.android.com/apk/res-auto"> | ||
<com.microsoft.onlineid.internal.ui.ProgressView android:id="@id/progressView" android:visibility="invisible" android:layout_width="fill_parent" android:layout_height="@dimen/marginMedium" /> | ||
<com.microsoft.onlineid.ui.StyledTextView android:textAppearance="@style/textLargest" android:id="@id/static_page_header" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/marginLarge" android:layout_marginTop="@dimen/marginSmall" android:layout_marginRight="@dimen/marginLarge" android:layout_marginBottom="@dimen/marginMedium" android:layout_below="@id/progressView" android:layout_alignParentTop="true" style="@style/textLargest" /> | ||
<com.microsoft.onlineid.ui.StyledTextView android:id="@id/static_page_body_first" android:layout_below="@id/static_page_header" style="@style/textStaticPage" /> | ||
<com.microsoft.onlineid.ui.StyledTextView android:id="@id/static_page_body_second" android:layout_below="@id/static_page_body_first" style="@style/textStaticPage" /> | ||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout style="@style/activity" | ||
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:msaui="http://schemas.android.com/apk/res-auto"> | ||
<ScrollView android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_above="@id/static_page_buttons" android:layout_alignParentTop="true"> | ||
<include android:layout_width="fill_parent" android:layout_height="wrap_content" layout="@layout/static_page" /> | ||
</ScrollView> | ||
<include android:id="@id/static_page_buttons" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_alignParentBottom="true" layout="@layout/web_flow_buttons" style="@style/textDefault" /> | ||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout android:orientation="horizontal" android:id="@id/webFlowButtons" android:padding="@dimen/marginLarge" android:layout_width="fill_parent" android:layout_height="fill_parent" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<com.microsoft.onlineid.ui.StyledButton android:id="@id/button_previous" android:text="@string/authentication_button_previous" style="@style/button" /> | ||
<Space style="@style/dividerButtons" /> | ||
<com.microsoft.onlineid.ui.StyledButton android:id="@id/button_next" android:text="@string/authentication_button_next" style="@style/button" /> | ||
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<FrameLayout android:id="@id/xbid_header_fragment" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true" /> | ||
<FrameLayout android:id="@id/xbid_body_fragment" android:paddingLeft="@dimen/xbid_body_padding_horizontal" android:paddingTop="@dimen/xbid_body_padding_horizontal" android:paddingRight="@dimen/xbid_body_padding_horizontal" android:paddingBottom="@dimen/xbid_body_padding_horizontal" android:layout_width="fill_parent" android:layout_height="0.0dip" android:layout_below="@id/xbid_header_fragment" android:layout_alignParentBottom="true" /> | ||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<FrameLayout android:id="@id/xbid_header_fragment" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true" /> | ||
<FrameLayout android:id="@id/xbid_body_fragment" android:paddingLeft="@dimen/xbid_body_padding_horizontal" android:paddingTop="@dimen/xbid_body_padding_horizontal" android:paddingRight="@dimen/xbid_body_padding_horizontal" android:layout_width="fill_parent" android:layout_height="0.0dip" android:layout_above="@id/xbid_error_buttons" android:layout_below="@id/xbid_header_fragment" android:layout_alignWithParentIfMissing="true" /> | ||
<FrameLayout android:id="@id/xbid_error_buttons" android:paddingLeft="@dimen/xbid_body_padding_horizontal" android:paddingRight="@dimen/xbid_body_padding_horizontal" android:paddingBottom="@dimen/xbid_body_padding_horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" /> | ||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<FrameLayout android:id="@id/xbid_header_fragment" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true" /> | ||
<FrameLayout android:id="@id/xbid_body_fragment" android:paddingLeft="@dimen/xbid_body_padding_horizontal" android:paddingTop="@dimen/xbid_body_padding_horizontal" android:paddingRight="@dimen/xbid_body_padding_horizontal" android:paddingBottom="@dimen/xbid_body_padding_horizontal" android:layout_width="fill_parent" android:layout_height="0.0dip" android:layout_below="@id/xbid_header_fragment" android:layout_alignParentBottom="true" android:layout_alignWithParentIfMissing="true" /> | ||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<FrameLayout android:id="@id/xbid_header_fragment" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true" /> | ||
<FrameLayout android:id="@id/xbid_body_fragment" android:paddingLeft="@dimen/xbid_body_padding_horizontal" android:paddingTop="@dimen/xbid_body_padding_horizontal" android:paddingRight="@dimen/xbid_body_padding_horizontal" android:paddingBottom="@dimen/xbid_body_padding_horizontal" android:layout_width="fill_parent" android:layout_height="0.0dip" android:layout_below="@id/xbid_header_fragment" android:layout_alignParentBottom="true" /> | ||
</RelativeLayout> |
Oops, something went wrong.