Untitled

 avatar
unknown
plain_text
2 years ago
12 kB
10
Indexable
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    tools:context=".view.inicio.fragment.IncioJobRecentAppliedFragment">

    <androidx.cardview.widget.CardView
        android:id="@+id/searchcard"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="@dimen/margin_10"
        android:layout_marginTop="@dimen/margin_10"
        android:layout_marginRight="@dimen/margin_10"
        android:layout_marginBottom="@dimen/margin_10"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:cardCornerRadius="10dp"
        app:cardElevation="40dp">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="@dimen/margin_4">

            <LinearLayout
                android:id="@+id/searchView"
                android:layout_width="match_parent"
                android:layout_height="@dimen/margin_48"
                android:clickable="true"
                android:focusable="true"
                android:focusableInTouchMode="true"
                android:gravity="center_vertical"
                android:orientation="horizontal"
                android:padding="@dimen/margin_4">

                <ImageView
                    android:id="@+id/imgsearch"
                    android:layout_width="@dimen/margin_36"
                    android:layout_height="@dimen/margin_36"
                    android:padding="@dimen/margin_4"
                    android:visibility="gone"
                    app:srcCompat="@drawable/ic_search_2"
                    app:tint="@color/colorDivider" />

                <TextView
                    android:id="@+id/txthint"
                    android:layout_width="wrap_content"
                    android:layout_height="@dimen/margin_36"
                    android:gravity="center_vertical"
                    android:paddingLeft="@dimen/margin_24"
                    android:text="Search your dream job"
                    android:visibility="gone" />

                <androidx.appcompat.widget.AppCompatEditText
                    android:id="@+id/searchtxt"
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/margin_36"
                    android:background="@color/white"
                    android:gravity="center_vertical"
                    android:hint="Search your dream job"
                    android:nextFocusLeft="@id/searchtxt"
                    android:nextFocusUp="@id/searchtxt"
                    android:paddingLeft="@dimen/margin_4"
                    android:visibility="gone" />

                <SearchView
                    android:id="@+id/searchview"
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/margin_36"
                    android:autofillHints="@string/search_hint"
                    android:backgroundTint="@color/white"
                    android:queryHint="@string/search_hint" />
            </LinearLayout>

            <LinearLayout
                android:id="@+id/categorylay"
                android:layout_width="250dp"
                android:layout_height="@dimen/margin_36"
                android:layout_below="@+id/searchView"
                android:layout_marginTop="@dimen/margin_8"
                android:layout_marginBottom="@dimen/margin_8"
                android:background="@drawable/rectangle_spinner"
                android:gravity="center_vertical"
                android:orientation="horizontal"
                android:padding="@dimen/margin_4"
                android:visibility="gone">

                <in.atees.inicio.component.multiSearchSpinner.MultiSpinnerSearch
                    android:id="@+id/searchMultiSpinnerIndustry"
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/margin_36"
                    android:layout_weight="1"
                    app:hintText="Industry" />

                <ImageView
                    android:id="@+id/imCloseDesignation"
                    android:layout_width="24dp"
                    android:layout_height="24dp"
                    android:src="@drawable/ic_action_navigation_close"
                    android:visibility="gone" />

            </LinearLayout>

            <Button
                android:id="@+id/btnsearch"
                android:layout_width="wrap_content"
                android:layout_height="@dimen/margin_36"
                android:layout_below="@id/searchView"
                android:layout_alignParentEnd="true"
                android:layout_marginLeft="@dimen/margin_4"
                android:layout_marginTop="@dimen/margin_8"
                android:layout_marginBottom="@dimen/margin_8"
                android:layout_toEndOf="@+id/categorylay"
                android:background="@drawable/rectangle_spinner"
                android:text="Search"
                android:visibility="gone" />

        </RelativeLayout>
    </androidx.cardview.widget.CardView>


    <androidx.cardview.widget.CardView
        android:id="@+id/checkboxer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/searchcard"
        android:layout_marginLeft="@dimen/margin_10"
        android:layout_marginTop="@dimen/margin_10"
        android:layout_marginRight="@dimen/margin_10"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/searchcard"
        app:cardCornerRadius="5dp"
        app:cardElevation="20dp">

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


            <CheckBox
                android:id="@+id/checkedstate"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="APPLIED JOBS"></CheckBox>


        </LinearLayout>

    </androidx.cardview.widget.CardView>

    <!--Jobs Recently Added.......-->
    <LinearLayout
        android:id="@+id/linearLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/checkboxer"
        android:orientation="vertical"
        android:visibility="visible"
        app:layout_constraintTop_toBottomOf="@+id/checkboxer">

        <androidx.cardview.widget.CardView
            android:id="@+id/recentlyaddedjobs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/margin_10"
            android:visibility="visible"
            app:cardElevation="@dimen/margin_2">

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="#EFEEEE">

                <TextView
                    android:id="@+id/ra_jobs_tv"
                    android:layout_width="match_parent"
                    android:layout_height="24dp"
                    android:fontFamily="@font/gotham"
                    android:gravity="center_vertical"
                    android:paddingLeft="@dimen/margin_18"
                    android:text="RECENTLY ADDED JOBS"

                    android:textSize="10sp" />

                <TextView
                    android:id="@+id/r_a_viewall"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentEnd="true"
                    android:fontFamily="@font/gotham"
                    android:padding="@dimen/margin_8"
                    android:text="VIEW ALL"
                    android:textColor="@color/colorPrimary"
                    android:textSize="10sp"
                    android:visibility="gone" />
            </RelativeLayout>
        </androidx.cardview.widget.CardView>
    </LinearLayout>

    <androidx.core.widget.NestedScrollView
        android:id="@+id/nestedScroll"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/linearLayout">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:orientation="vertical">


            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/recentlyaddedjoblist"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="@dimen/margin_4"
                android:layout_marginTop="@dimen/margin_24"
                android:layout_marginRight="@dimen/margin_4"
                android:orientation="vertical"
                tools:itemCount="5"
                tools:listitem="@layout/layout_recommended2" />

            <Button
                android:id="@+id/progressBar_cyclic"
                android:layout_width="200dp"
                android:layout_height="50dp"
                android:text="Load More.."
                android:textColor="@color/black"
                android:layout_marginTop="10dp"
                android:layout_marginBottom="10dp"
                android:visibility="visible" />

        </LinearLayout>
    </androidx.core.widget.NestedScrollView>


    <androidx.cardview.widget.CardView
        android:id="@+id/applied"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:visibility="gone"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/checkboxer">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#EFEEEE">

            <TextView
                android:id="@+id/txttt"
                android:layout_width="match_parent"
                android:layout_height="24dp"
                android:fontFamily="@font/gotham"
                android:gravity="center_vertical"
                android:paddingLeft="@dimen/margin_18"
                android:text="APPLIED JOBS"
                android:textSize="10sp" />

            <TextView
                android:id="@+id/viewall3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentEnd="true"
                android:layout_marginEnd="@dimen/margin_18"
                android:fontFamily="@font/gotham"
                android:padding="@dimen/margin_8"
                android:text="VIEW ALL"
                android:textColor="@color/colorPrimary"
                android:textSize="10sp" />

            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/appliedlist"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/txttt"
                android:layout_marginTop="-5dp"
                android:orientation="horizontal"
                tools:itemCount="2"
                tools:listitem="@layout/layout_applied_card2" />

        </RelativeLayout>
    </androidx.cardview.widget.CardView>


</androidx.constraintlayout.widget.ConstraintLayout>
Editor is loading...
Leave a Comment