fragment_about.xml 4.1 KB
<?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=".fragments.AboutFrag">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/whitecolor"
        android:orientation="vertical">

        <HorizontalScrollView
            android:id="@+id/horitxt"
            android:layout_width="wrap_content"
            android:layout_height="@dimen/twentyfive_height"
            android:layout_marginTop="@dimen/layout_marginTop_five"
            android:scrollbarThumbHorizontal="@color/transparent"
            android:scrollbars="horizontal">

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:orientation="horizontal">

                <TextView
                    android:id="@+id/dashboard_txt"
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:layout_marginLeft="@dimen/margin_ten"
                    android:text="@string/dashboard_txt"
                    android:textColor="@color/yellowcolor"
                    android:textSize="@dimen/fifteenText_size" />

                <ImageView
                    android:layout_width="@dimen/twelve_width"
                    android:layout_height="@dimen/twelve_height"
                    android:layout_gravity="center"
                    android:layout_marginStart="@dimen/layout_marginstart_five"
                    android:src="@drawable/icon_forward"
                    android:tint="@color/textcolor" />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:layout_marginStart="@dimen/layout_marginstart_five"
                    android:gravity="center"
                    android:text="@string/about_txthome"
                    android:textColor="@color/textcolor"
                    android:textSize="@dimen/fifteenText_size" />

            </LinearLayout>
        </HorizontalScrollView>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"

            android:layout_marginTop="@dimen/margin_six"
            android:orientation="vertical">

            <TextView
                android:id="@+id/name_txt"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="@dimen/layout_marginTop_thirty"
                android:gravity="center"
                android:textColor="@color/blackcolor"
                android:textSize="@dimen/fifteenText_size" />

            <TextView
                    android:id="@+id/version_txt"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:gravity="left"
                    android:textColor="@color/textcolor"
                    android:layout_marginLeft="20dp"
                    android:textSize="@dimen/twentyfive_Text_size" />

            <TextView
                android:id="@+id/build_txt"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="@dimen/layout_marginTop_fifteen"
                android:gravity="center"
                android:textColor="@color/textcolor"
                android:textSize="@dimen/twelbeText_size" />

            <TextView
                android:id="@+id/copy_right_txt"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:textColor="@color/textcolor"
                android:textSize="@dimen/twelbeText_size" />


        </LinearLayout>


    </LinearLayout>

</FrameLayout>