我可以在android中更改可滑动标签的位置吗?

时间:2015-07-10 03:55:34

标签: android tabs positioning

我是android新手所以请建议我如何做以下事情。我需要一个标签视图上方的文本框,我需要为其定位标签视图。我在网上学习了一下后使用了ViewPager。任何人都可以建议我得到我需要的东西吗? 我附上了一张图片,表示我希望在活动中创建的内容。

https://drive.google.com/open?id=0B4YOVOcFR_ChVzVoekJQbjZud3c

1 个答案:

答案 0 :(得分:0)

我认为你可以一起使用搜索视图,tablayout和查看寻呼机

<RelativeLayout 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=".SearchViewActivity" >

<SearchView
    android:id="@+id/searchView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true" >
</SearchView>


<android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

<android.support.v4.view.ViewPager
    android:id="@+id/viewpager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</RelativeLayout>

你可以看一下theese的链接

https://github.com/chrisbanes/cheesesquare/blob/master/app/src/main/res/layout/include_list_viewpager.xml

https://looksok.wordpress.com/2013/06/15/android-searchview-tutorial-edittext-with-phone-contacts-search-and-autosuggestion/