Android菜单标签

时间:2012-05-24 10:47:43

标签: android android-layout

如何在此示例中创建此类标签?我的意思是Spades w/ Ads以及这些Spades SettingsPartners Spades Options

Example Menu

2 个答案:

答案 0 :(得分:2)

使用“共享首选项”很容易,请查看此tutorial

简而言之:对于所有偏好类别,您可以添加标题,例如黑桃设置和合作伙伴黑桃选项。

答案 1 :(得分:0)

黑桃与广告是屏幕的标题,休息可以使用xml轻松创建............

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#ff555555"
    android:gravity="center_vertical" >

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="5dp"
        android:text="sample1" />
</LinearLayout>

enter image description here