Настройка макета предпочтений и изменение в нем атрибута

Можно ли программно получить доступ к макету, который установлен в предпочтение?

Вот что у меня есть, очень простой проект - подтверждение концепции

Предпочтительная деятельность:

package com.example;

import android.os.Bundle;
import android.preference.PreferenceActivity;
import android.util.Log;
import android.view.View;

public class PreferenceExampleActivity extends PreferenceActivity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        addPreferencesFromResource(R.xml.preferences);

        ImageView v = (ImageView) findViewById(R.id.iconka);

    }
}

Ресурс XML:

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
  xmlns:android="http://schemas.android.com/apk/res/android" 
  android:key="settings">
    <PreferenceCategory 
        android:title="Category Setting Name" 
        android:order="1" 
        android:key="Main">
        <Preference 
            android:order="1" 
            android:title="Setting" 
            android:summary="Setting1" 
            android:layout="@layout/profile_preference_row"
            android:key="profile" />
    </PreferenceCategory>
</PreferenceScreen>

Пользовательский макет для предпочтения:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@android:id/widget_frame"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="?android:attr/listPreferredItemHeight"
    android:gravity="center_vertical"
    android:paddingRight="?android:attr/scrollbarSize">



    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="15dip"
        android:layout_marginRight="6dip"
        android:layout_marginTop="6dip"
        android:layout_marginBottom="6dip"
        android:layout_weight="1">

        <TextView android:id="@+android:id/title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:singleLine="true"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:ellipsize="marquee"
            android:fadingEdge="horizontal" />

        <TextView android:id="@+android:id/summary"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@android:id/title"
            android:layout_alignLeft="@android:id/title"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:textColor="?android:attr/textColorSecondary"
            android:maxLines="4" />

    </RelativeLayout>
    <ImageView
        android:id="@+id/iconka"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        />
</LinearLayout>

Я хочу получить доступ к ImageView "iconka" из Activity и изменить изображение оттуда. Я использую API 8 (Android 2.2)

В настоящее время буква "v" равна нулю, и я понятия не имею, почему это так.

Намек будет высоко ценится!

Обновление - решение. На самом деле мне нужны были пользовательские настройки, которые я мог бы изменить для своих нужд. Это практическое руководство по созданию ваших собственных пользовательских настроек в вашем проекте: Android & Amir - Android Preferences Смотрите часть, когда автор создает пользовательский класс предпочтений.

3 ответа

Решение

Попробуйте взглянуть на следующие обсуждения imageview. Может помочь вам с вашей проблемой.

Android: findViewById для ImageView (пользовательский адаптер)

Android: получение NullPointerException для ImageView imag = (ImageView) findViewById(R.id.image)

После 20 минут стягивания волос я нашел элегантное решение этой проблемы. Сначала расширьте предпочтение, затем переопределите метод getView(View convertView, ViewGroup parent). Мой случай был такой: у меня был макет предпочтений со значком приложения и двумя текстовыми представлениями (название и версия приложения). Я хочу изменить версию приложения программно. Как мне это сделать? просто посмотрите ниже:

public class AboutUsPreference extends Preference {

    public AboutUsPreference(Context context) {
        super(context);
    }

    public AboutUsPreference(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public AboutUsPreference(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    public View getView(View convertView, ViewGroup parent) {
        View v = super.getView(convertView, parent);
        ((TextView)v.findViewById(R.id.textView2)).setText(getAppVersion());        
        return v;
    }

    private String getAppVersion(){
        PackageInfo pInfo = null;
        try {
            pInfo = getContext().getPackageManager().getPackageInfo(getContext().getPackageName(), 0);
        } catch (NameNotFoundException e) {
            Log.e(getClass().getName(), e.getMessage(), e);
            return "";
        }

        String version = pInfo.versionName;
        return getContext().getString(R.string.version, version);
    }


}

Решение заключается в следующем: View v = super.getView(convertView, parent); при переопределении метода getView. Вызов super.getview вернет ваш вид макета.

И мои предпочтения XML выглядят так:

<com.audioRec.android.settings.aboutUs.AboutUsPreference
        android:layout="@layout/about_preference_layout"/>

Попробуйте getLayoutResource, чтобы получить View предпочтения, а затем получить ваш ImageView

Другие вопросы по тегам