aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/note_block_basic.xml
blob: e720fa6155ece89bf5aa283466ca0c86d2010cc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:app="http://schemas.android.com/apk/res-auto"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:layout_gravity="center"
              android:paddingLeft="@dimen/margin_extra_large"
              android:paddingRight="@dimen/margin_extra_large"
              android:paddingTop="@dimen/margin_medium"
              android:paddingBottom="@dimen/margin_medium"
              android:orientation="vertical">

    <org.wordpress.android.widgets.WPTextView
        android:id="@+id/note_text"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:textSize="@dimen/text_sz_large"
        android:textColor="@color/grey_dark"
        android:textColorLink="@color/grey_dark"
        app:fixWidowWords="true"/>
</LinearLayout>