| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?xml version="1.0" encoding="utf-8"?>
- <com.ivalentin.margolariak.CustomScrollView
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content">
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="fill_parent"
- android:layout_marginBottom="10dp"
- tools:ignore="UselessParent">
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="fill_parent"
- android:background="@drawable/section"
- android:layout_margin="10dp">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/section_title_blog"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:textStyle="bold"
- tools:layout_width="match_parent"
- android:background="@drawable/section_title"
- android:paddingBottom="4dp"
- android:paddingEnd="10dp"
- android:paddingLeft="20dp"
- android:paddingRight="10dp"
- android:paddingStart="20dp"
- android:paddingTop="4dp"
- android:textColor="@color/section_title"/>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:id="@+id/ll_blog_list"/>
- <LinearLayout
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center_horizontal"
- android:gravity="center_horizontal">
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/blog_pager_previous"
- android:id="@+id/bt_blog_previous"
- android:background="@drawable/button_selector"
- android:textStyle="bold"
- android:textColor="@color/input_button_color"
- android:layout_gravity="center_horizontal"
- android:visibility="gone"
- android:layout_margin="5dp"
- tools:ignore="ButtonStyle"/>
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/blog_pager_next"
- android:id="@+id/bt_blog_next"
- android:background="@drawable/button_selector"
- android:textStyle="bold"
- android:textColor="@color/input_button_color"
- android:layout_gravity="center_horizontal"
- android:layout_margin="5dp"
- tools:ignore="ButtonStyle"/>
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
- </com.ivalentin.margolariak.CustomScrollView>
|