mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
94ee4e7fb5
* Tracking tab with anilist support * Rename MangaSync to Track * Rename variables and methods to track * Kitsu implementation * Variables refactoring * Travis fix?
47 lines
No EOL
1.6 KiB
XML
47 lines
No EOL
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:gravity="center"
|
|
android:orientation="horizontal"
|
|
android:paddingLeft="@dimen/margin_left"
|
|
android:paddingRight="@dimen/margin_right">
|
|
|
|
<EditText
|
|
android:id="@+id/track_search"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:hint="@string/title"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progress"
|
|
style="?android:attr/progressBarStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:layout_gravity="center_vertical|center_horizontal"
|
|
android:paddingBottom="32dp"
|
|
android:paddingTop="32dp"
|
|
android:visibility="gone"/>
|
|
|
|
<ListView
|
|
android:id="@+id/track_search_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:choiceMode="singleChoice"
|
|
android:clipToPadding="false"
|
|
android:divider="@null"
|
|
android:dividerHeight="0dp"
|
|
android:listSelector="?attr/selectable_list_drawable"
|
|
android:scrollbarStyle="outsideOverlay"
|
|
android:visibility="gone"/>
|
|
|
|
</LinearLayout> |