161 lines
5.1 KiB
XML
161 lines
5.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<me.grishka.appkit.views.FragmentRootLinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:id="@+id/appkit_loader_root"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/top_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="8dp"
|
|
android:background="@drawable/bg_onboarding_panel">
|
|
|
|
<EditText
|
|
android:id="@+id/search_edit"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp"
|
|
android:elevation="0dp"
|
|
android:inputType="textFilter|textUri"
|
|
android:layout_toEndOf="@+id/btn_back"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:textAppearance="@style/m3_body_large"
|
|
android:paddingTop="0dp"
|
|
android:paddingBottom="0dp"
|
|
android:paddingStart="12dp"
|
|
android:paddingEnd="40dp"
|
|
android:drawableStart="@drawable/ic_m3_search"
|
|
android:drawablePadding="8dp"
|
|
android:drawableTint="?colorM3OnSurfaceVariant"
|
|
android:gravity="center_vertical"
|
|
android:textColorHint="?colorM3OnSurfaceVariant"
|
|
android:textColor="?colorM3OnSurfaceVariant"
|
|
android:background="@drawable/round_rect"
|
|
android:backgroundTint="?colorM3SurfaceVariant"
|
|
android:hint="@string/search_communities"/>
|
|
|
|
<View
|
|
android:id="@+id/focus_thing"
|
|
android:layout_width="1dp"
|
|
android:layout_height="1dp"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
android:importantForAccessibility="no"/>
|
|
|
|
<ImageButton
|
|
android:id="@+id/btn_back"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_marginTop="20dp"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentTop="true"
|
|
android:background="?android:selectableItemBackgroundBorderless"
|
|
android:tint="?colorM3OnSurface"
|
|
android:contentDescription="@string/back"
|
|
android:src="@drawable/ic_arrow_back"/>
|
|
|
|
<ImageButton
|
|
android:id="@+id/clear"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:background="?android:selectableItemBackgroundBorderless"
|
|
android:layout_alignEnd="@id/search_edit"
|
|
android:layout_alignTop="@id/search_edit"
|
|
android:layout_margin="12dp"
|
|
android:contentDescription="@string/clear"
|
|
android:tint="?colorM3OnSurfaceVariant"
|
|
android:visibility="gone"
|
|
android:src="@drawable/ic_m3_cancel"/>
|
|
|
|
<HorizontalScrollView
|
|
android:id="@+id/filters_scroll"
|
|
android:layout_below="@id/search_edit"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp"
|
|
android:scrollbars="none">
|
|
<LinearLayout
|
|
android:id="@+id/filters_container"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="8dp"
|
|
android:paddingRight="16dp"
|
|
android:paddingBottom="8dp"
|
|
android:paddingLeft="16dp"
|
|
android:showDividers="middle"
|
|
android:divider="@drawable/empty_8dp">
|
|
</LinearLayout>
|
|
</HorizontalScrollView>
|
|
|
|
</RelativeLayout>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/appkit_loader_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0px"
|
|
android:layout_weight="1"
|
|
android:background="?colorM3Surface">
|
|
|
|
<include layout="@layout/loading"
|
|
android:id="@+id/loading"/>
|
|
|
|
<ViewStub android:layout="?errorViewLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/error"
|
|
android:visibility="gone"/>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/content_stub"/>
|
|
|
|
</FrameLayout>
|
|
<LinearLayout
|
|
android:id="@+id/button_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:background="@drawable/bg_onboarding_panel">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_marginTop="8dp"
|
|
android:textAppearance="@style/m3_body_small"
|
|
android:textColor="?colorM3OnSurfaceVariant"
|
|
android:text="@string/signup_random_server_explain"/>
|
|
|
|
<Button
|
|
android:id="@+id/btn_random_instance"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_marginTop="8dp"
|
|
style="@style/Widget.Mastodon.M3.Button.Text"
|
|
android:text="@string/pick_server_for_me"/>
|
|
|
|
<Button
|
|
android:id="@+id/btn_next"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:minWidth="145dp"
|
|
style="@style/Widget.Mastodon.M3.Button.Filled"
|
|
android:text="@string/next" />
|
|
|
|
</LinearLayout>
|
|
</me.grishka.appkit.views.FragmentRootLinearLayout> |