我在android studio中使用了Settings活动(首选项)的模板,但我有这个布局。my XML
但我希望布局看起来像这个 new XML
我完成了用photoshop创建顶部栏“帮助”,如何添加顶部栏“帮助”,就像我的自定义布局? THX。
这是我的代码(pref_headers.xml):
<header
android:fragment="com.example.hp.refomandaapps.SettingsActivity$NotificationPreferenceFragment"
android:icon="@drawable/ic_notifications_black_24dp"
android:title="@string/pref_header_notifications" />
<header
android:fragment="com.example.hp.refomandaapps.SettingsActivity$DataSyncPreferenceFragment"
android:icon="@drawable/ic_sync_black_24dp"
android:title="@string/pref_header_data_sync" />
答案 0 :(得分:1)
将其添加到顶部。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="60dp"
android:background="#000">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:text="Title"
android:id="@+id/tv_title"
android:textSize="8.5pt"
android:textColor="@color/colorWhite"
android:layout_centerHorizontal="true"/>
</RelativeLayout>