-1

现在我有一个滑动菜单如下,

在此处输入图像描述

我想把它设计成方形滑动菜单,

在此处输入图像描述

这是我的布局

  <RelativeLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content" >

      <Button
          android:id="@+id/oneButton"
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:layout_alignParentLeft="true"
          android:layout_alignParentTop="true"
          android:layout_marginLeft="5dp"
          android:layout_marginTop="5dp"
           android:drawableLeft="@drawable/ic_dashboard"
             android:gravity="left|center_vertical"
          android:text="@string/duo_dashboard" />

      <Button
          android:id="@+id/twoButton"
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:layout_alignParentLeft="true"
          android:layout_alignParentRight="true"
          android:layout_below="@+id/oneButton"
          android:layout_marginLeft="5dp"
          android:drawableLeft="@drawable/ic_settings"
          android:gravity="left|center_vertical"
          android:text="@string/title_settings" />

       <Button
          android:id="@+id/threeButton"
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:layout_alignParentLeft="true"
          android:layout_alignParentRight="true"
          android:layout_below="@+id/twoButton"
          android:layout_marginLeft="5dp"
          android:drawableLeft="@drawable/ic_todo"
          android:gravity="left|center_vertical"
          android:text="@string/title_todo" />

  </RelativeLayout>
</LinearLayout> </RelativeLayout>
4

2 回答 2

1

Android提供:显示导航抽屉

http://developer.android.com/design/patterns/navigation-drawer.html

于 2013-08-29T06:49:44.607 回答
0

这里只是一个粗略的猜测。分线器可能可以通过像这样的分隔符属性来实现。

 <ListView
        android:id="@+id/left_drawer"
        android:layout_width="250dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:divider="@drawable/gradientshape" <!--thats what im talking about-->
        android:dividerHeight="0.5dp" />

其中 gradientshape 必须是像这样的渐变 xml 文件

 <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<gradient
    android:startColor="@color/dark_black" <!--use whatever colors you like-->
    android:endColor="@color/light_grey"
    android:type="linear"
    android:angle="270" /> </shape>

编辑:刚刚查看了foursquare资源,着色和线条阴影实际上是由9个补丁图像实现的

于 2013-09-21T02:30:40.283 回答