使用Horizo​​ntalScrollView的相对布局

时间:2014-09-23 00:32:55

标签: android layout

我正在尝试将我的ImageButtons设置在框架布局下方的水平滚动视图中。以下是我到目前为止所做的工作。但是,这会滚动所有内容,包括我的框架布局。我该如何避免?或者以另一种方式来看待它,我试图把我的导航抽屉放下来,而不是从侧面弹出?也许有办法复制那个?总体目标是获得与旧的黑莓滚动菜单类似的东西。

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".DMActivity">
    <HorizontalScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical"
        android:gravity="center">
        <FrameLayout
            android:id="@+id/container"
            android:layout_width="match_parent"
            android:layout_height="900px"></FrameLayout>
        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/container"
            android:src="@drawable/directmessage_button"
            android:id="@+id/btn_DirectMessages"
            android:background="#0000"
            android:padding="20px"
            android:focusableInTouchMode="false" />
        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/container"
            android:src="@drawable/instantmessage_button"
            android:id="@+id/btn_InstantMessage"
            android:layout_toRightOf="@+id/btn_DirectMessages"
            android:background="#0000"
            android:padding="20px"
            android:focusableInTouchMode="false"/>
        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/container"
            android:layout_toRightOf="@+id/btn_InstantMessage"
            android:src="@drawable/reports_button"
            android:id="@+id/btn_Reports"
            android:background="#0000"
            android:padding="20px"
            android:focusableInTouchMode="false"/>
        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/conference_button"
            android:id="@+id/btn_Conference"
            android:layout_toRightOf="@+id/btn_Reports"
            android:layout_below="@+id/container"
            android:background="#0000"
            android:padding="20px"
            android:focusableInTouchMode="false"/>
        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/account_button"
            android:id="@+id/btn_Account"
            android:layout_toRightOf="@id/btn_Conference"
            android:layout_below="@+id/container"
            android:background="#0000"
            android:padding="20px"/>
        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/filetransfer_button"
            android:id="@+id/btn_FileTransfer"
            android:layout_below="@id/container"
            android:layout_toRightOf="@+id/btn_Account"
            android:background="#0000"
            android:padding="20px"/>
    </RelativeLayout>
</HorizontalScrollView>
    <fragment android:id="@+id/navigation_drawer"
        android:layout_width="@dimen/navigation_drawer_width"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:name="datamotion.dmandroidclient.NavigationDrawerFragment"
        tools:layout="@layout/fragment_navigation_drawer" />
</android.support.v4.widget.DrawerLayout>

1 个答案:

答案 0 :(得分:0)

我不知道我是否理解得很好,但是我使用这个库进行水平滚动,你可以实现这个水平listView,在里面放置你的ImageButtons就像你对垂直ListView一样。

https://github.com/sephiroth74/HorizontalVariableListView

希望它对你有所帮助。