1 |
efrain |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
3 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
4 |
xmlns:tools="http://schemas.android.com/tools"
|
|
|
5 |
android:layout_width="fill_parent"
|
|
|
6 |
android:layout_height="fill_parent"
|
|
|
7 |
android:background="@color/windowBackgroud"
|
|
|
8 |
android:fillViewport="true"
|
|
|
9 |
android:fitsSystemWindows="true"
|
|
|
10 |
android:paddingHorizontal="@dimen/activity_horizontal_margin"
|
|
|
11 |
android:paddingVertical="@dimen/activity_vertical_margin"
|
|
|
12 |
tools:context=".activity.TextActivity">
|
|
|
13 |
|
|
|
14 |
|
|
|
15 |
<com.codesgood.views.JustifiedTextView
|
|
|
16 |
android:id="@+id/activity_text"
|
|
|
17 |
style="@style/textview_topic_name"
|
|
|
18 |
android:text="TextView"
|
|
|
19 |
android:textAlignment="center"
|
|
|
20 |
android:layout_width="match_parent"
|
|
|
21 |
android:layout_height="match_parent"/>
|
|
|
22 |
|
|
|
23 |
|
|
|
24 |
|
|
|
25 |
</ScrollView>
|