带有偏好标题的图标右侧Android

时间:2016-08-29 10:35:58

标签: android header settings preferences

我使用向导Android进行créate设置活动我的应用。 我添加了一个自定义布局,没有什么不寻常的,只是背景和边框。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@mipmap/fondo_01">
<ListView android:id="@android:id/list"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/corners_main_layout"
    android:layout_marginLeft="16dp"
    android:layout_marginRight="16dp"
    android:layout_marginTop="16dp"
    android:paddingLeft="16dp" />
  </RelativeLayout>

在方法onBuildHeaders中我添加了setcontentView,一切正常......:

 @Override
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public void onBuildHeaders(List<Header> target) {
    loadHeadersFromResource(R.xml.pref_headers, target);
    setContentView(R.layout.config_custom);

以下XML用于标题:

<preference-headers xmlns:android="http://schemas.android.com/apk/res/android">

<!-- These settings headers are only used on tablets. -->

<header
    android:fragment="com....."
    android:icon="@drawable/ic_info_black_24dp"
    android:title="@string/pref_header_general" />

<header
    android:fragment="com...."
    android:icon="@drawable/ic_notifications_black_24dp"
    android:title="@string/pref_header_notifications" />

<header
    android:fragment="com......."
    android:icon="@drawable/ic_sync_black_24dp"
    android:title="@string/pref_header_data_sync" />

 </preference-headers>

“android:icon”将图标添加到左侧,但我需要在右侧添加另一个图标。怎么可能呢?

0 个答案:

没有答案