2013-10-30 10:37:27 +00:00
|
|
|
<ScrollView 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"
|
2014-03-16 15:05:02 +00:00
|
|
|
android:padding="20dp"
|
2013-10-30 10:37:27 +00:00
|
|
|
tools:context=".MainActivity" >
|
|
|
|
|
2014-03-16 15:05:02 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2013-10-30 10:37:27 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-03-16 15:05:02 +00:00
|
|
|
android:orientation="vertical" >
|
2013-10-30 10:37:27 +00:00
|
|
|
|
2014-03-16 15:05:02 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_workaround"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:linksClickable="true" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_info"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:linksClickable="true"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|