| 12345678910111213141516171819202122232425262728293031323334 |
- <LinearLayout 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"
- android:orientation="vertical"
- tools:context="com.uas.standard_esop.activity.CommonSeclecActivity">
- <include
- android:id="@+id/include_menuactionbar"
- layout="@layout/actionbar_withback" />
- <com.uas.standard_esop.view.ClearableEditText
- android:id="@+id/fl_search_actext"
- style="@style/Search"
- android:layout_height="35dp"
- android:background="@drawable/shape_from_edit"
- android:padding="6dp"
- android:imeOptions="actionSend"
- android:gravity="left"
- />
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/common_select_rv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- <RelativeLayout
- android:id="@+id/common_select_fragment"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:visibility="gone">
- </RelativeLayout>
- </LinearLayout>
|