mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-04 15:28:21 +03:00
88 lines
3.6 KiB
XML
88 lines
3.6 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
tools:context="org.schabi.newpipe.errorhandling.ErrorActivity">
|
||
|
|
||
|
<ScrollView
|
||
|
android:id="@+id/scrollView"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
||
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
||
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
||
|
android:paddingTop="@dimen/activity_vertical_margin">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/errorSorryView"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
||
|
android:text="@string/sorry_string"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/errorWhatHappenedView"
|
||
|
android:paddingTop="@dimen/activity_vertical_margin"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||
|
android:text="What happened:"/>
|
||
|
|
||
|
<HorizontalScrollView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/horizontalScrollView"
|
||
|
android:layout_gravity="center" >
|
||
|
<TextView
|
||
|
android:id="@+id/errorView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:typeface="monospace"
|
||
|
android:text="asdkfjasdhfjshgfgnigregirenigneigheuigeorigjweogijhegiohegojiegoergjeogheoghweoghiehgohewgoiwehogihewrghieogh
|
||
|

asdfgeogirejgoeirjgoregjogijegoiwejg
|
||
|

wergjergljegoiejgoeigjogjeogjegohgeoigheognmgnbnorneog
|
||
|

ergoegremgekgnonhotnhotrnhkhnh
|
||
|

safs
|
||
|

f
|
||
|

s
|
||
|

f
|
||
|

f
|
||
|

f
|
||
|

safasf
|
||
|

sageoigohntrh
|
||
|

trhoijrhoirnhohintrionbobirnionb
|
||
|

boitrnobinobnroni
|
||
|

sadfsfagfkjgnsfdljhenvgoenvjibnoenpeoignweguihregpiorhnpoithtvhiohöio höio ho fvgegh gsfdsfd
|
||
|

sfdaiohsfdiousfdahoiuhsfdaoiusfd oifdhoifdho fvigh fvuigupi refsfdasklsdfhsalkjfhsalkfjsa
|
||
|

salgkjsfdgkjreog ehpio vpo hfgoeiwrhpwreo ibbuhwfgeubuh l jhjkb
|
||
|
|
||
|

ssfda
|
||
|

sfda
|
||
|

sfda
|
||
|

sfda
|
||
|


|
||
|

sagrejgorigjeoigjgkofdjgölkfdjgsdökgjklgjoe
|
||
|

sfdafgs
|
||
|

dfg
|
||
|

sd
|
||
|

fg"/>
|
||
|
</HorizontalScrollView>
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/errorReportButton"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/error_report_button_text" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
</ScrollView>
|
||
|
|
||
|
</FrameLayout>
|