PreferenceScreenにボタンを追加する方法


106

設定画面の下部にボタンを追加して、スクロール時に正しく機能させる方法はありますか?


2
カスタム環境設定の作成を見てきましたか?
Prashast 2010

2
将来の訪問者のために、マックスのソリューションは機能しますが、代替ソリューションがあります:stackoverflow.com/a/7251575/802469
Reed

回答:


249

設定の外観をカスタマイズするための別のソリューションがあります。

ボタンなど、標準の設定に追加するものを使用して、通常のXMLレイアウトを設計します。をListViewレイアウトに含め、IDを付けます@android:id/list

レイアウトファイルを呼び出すとしましょうres/layout/main.xml。次のようになります。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:orientation="vertical">
    <Button android:text="This is a button on top of all preferences."
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    <ListView android:id="@android:id/list"
              android:layout_width="match_parent"
              android:layout_height="wrap_content" />
</LinearLayout>

PreferenceActivityで、次の2行をyour に追加しますonCreate

addPreferencesFromResource(R.xml.preferences);
setContentView(R.layout.main);

ListViewあなたのレイアウトでは、その後で通常の方法を定義した設定に置き換えられますres/xml/preferences.xml


10
ボタンがリストビューの下にある場合は機能しません。設定アクティビティがダイアログテーマを使用している場合は機能しません。
Greg Ennis

11
developer.android.com/reference/android/preference/…にある PreferenceActivityの使用に関する最新のドキュメントでは、すべての新しい開発でPreferenceFragmentを実装することを推奨しています。与えられた解決策はそのようなシナリオでは機能しないようです。
Pankaj 2012

4
それでもリストはスクロールしません。
Sudarshan Bhat 2013年

7
この回答は元の質問には実際には回答しないので、この回答の投票数には少し困惑しています。上記のコメントで述べたように、リストと一緒にスクロールしたり、ボタンがビューの下部に配置されている場合は機能しません。
howettl 2013年

1
@howettlは、ListView layout_heightでfill_parentをwrap_contentに変更するだけ
Martin Ch

56

私はこれが少し遅れていることを知っていますが、マックスの賞賛されたソリューションよりも良いソリューションを見つけました。

次のように、PreferenceActivityのListViewにフッター(またはボタンを上に配置したい場合はヘッダー)を追加するだけです。

public class MyActivity extends PreferenceActivity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        addPreferencesFromResource(R.xml.preferences);
        ListView v = getListView();
        v.addFooterView(new Button(this));
    }
}

これが誰かの役に立つことを願っています。


2
少なくとも、これは要素IDに依存しないため、Maxのソリューションとしてはより良い感じがします。Androidの将来のバージョンでの動作を見てみましょう...
Daniel F

@DanielF。到着するまで橋を渡らないでください;)
jpihl 2012

1
ListViewPreferenceFragment :(で取得できません。
MichałK

1
いいえ、その方法では機能しません(PreferenceFragment独自のリストがあるため)。ただし、を作成してPreferenceに設定するだけで解決しIntentました。ボタンを作成する必要は(少なくとも私の場合には)ありませんでした
のMichałK

1
getListViewは実際にはRecyclerViewを返すため、PreferenceFragmentCompatでは機能しません
Mauker

11

以下のこの例は、ページの下部にボタンをレンダリングします(誰かがまだ興味がある場合)。

LinearLayoutの場合は、重みを適用することもできます。これは、Listviewが* fill_parent *に設定されているために必要です。私は通常これを行うために* android:layout_weight *を追加します:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              android:orientation="vertical">
    <ListView android:id="@android:id/list"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent" android:layout_weight="10"/>
    <Button android:text="This is a button on top of all preferences."
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:layout_weight="1"/>
</LinearLayout>

以下の説明はおそらく100%ではありませんが、理解するのに役立ちます...

+-- View Port (linear layout)
| +-- List View (this is where the preferences will go)
| |
| |
| +--
+--
  +--
  | Button (which was pushed out of view by the fillparent of ListView
  +--

ボタンには重みがないため、言うこともできます。ボタンは0dpの高さでレンダリングされます。

これで、layout_weigthsが追加され、ボタンがインビューをレンダリングできるようになります

+-- View Port (linear layout)
| +-- List View (this is where the preferences will go)
| |
| |
| +--
| +--
| | Button (which was pushed out of view by the fillparent of ListView
| +--
+--

申し訳ありませんが、@ stealthcopterの投稿を見逃しました
Ronnie

7

実際には、解決策があります。ここにコードがあります、これは誰にとっても役立つことを願っています。画面解像度に関係なく、3つのオプションと2つのボタンが画面下部にあるように見えます(240を最低としてターゲットにした)。

package com.myapplication.gui;

import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.os.Bundle;
import android.preference.Preference;
import android.preference.PreferenceActivity;
import android.preference.PreferenceScreen;
import android.view.Display;
import android.view.Gravity;
import android.view.WindowManager;
import android.view.ViewGroup.LayoutParams;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.ListView;
import android.widget.ScrollView;
import com.myproject.general.HeightListView;

import com.myapplication.R;

public class FilterActivity extends PreferenceActivity {

    private LinearLayout rootView; 
    private LinearLayout buttonView; 
    private Button buttonDone;
    private Button buttonRevert;
    private ListView preferenceView; 
    private LinearLayout gradientView;
    private ScrollView scrollRoot;

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 

        Display display = ((WindowManager) getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay(); 
        int height = display.getHeight();
        int width = height > 240 ? display.getWidth() : display.getWidth() - 4;

        scrollRoot = new ScrollView(this);
        scrollRoot.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));

        rootView = new LinearLayout(this); 
        rootView.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT)); 
        rootView.setOrientation(LinearLayout.VERTICAL);

        buttonView = new LinearLayout(this); 
        buttonView.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
        buttonView.setOrientation(LinearLayout.HORIZONTAL);
        buttonView.setGravity(Gravity.BOTTOM);

        gradientView = new LinearLayout(this);
        gradientView.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
        gradientView.setOrientation(LinearLayout.HORIZONTAL);
        gradientView.setBackgroundResource(R.drawable.gradient);
        gradientView.setPadding(0, 5, 0, 0);
        gradientView.setBackgroundResource(R.drawable.gradient);

        buttonDone = new Button(this); 
        buttonDone.setText(R.string.filterButton_Done); 
        buttonDone.setLayoutParams(new LayoutParams(width/2, LayoutParams.WRAP_CONTENT));
        gradientView.addView(buttonDone);

        buttonRevert = new Button(this); 
        buttonRevert.setText(R.string.filterButton_Revert);
        buttonRevert.setLayoutParams(new LayoutParams(width/2, LayoutParams.WRAP_CONTENT));
        gradientView.addView(buttonRevert);

        buttonView.addView(gradientView);

        preferenceView = new HeightListView(this); 
        preferenceView.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT)); 
        preferenceView.setId(android.R.id.list); 

        PreferenceScreen screen = createPreferenceHierarchy(); 
        screen.bind(preferenceView); 
        preferenceView.setAdapter(screen.getRootAdapter()); 
        rootView.addView(preferenceView);
        rootView.addView(buttonView);

        if (height > 240) {
            this.setContentView(rootView);
        }
        else {
            scrollRoot.addView(rootView);
            this.setContentView(scrollRoot);
        }

        setPreferenceScreen(screen); 
    } 

    private PreferenceScreen createPreferenceHierarchy() {        
        PreferenceScreen root = getPreferenceManager().createPreferenceScreen(this);

        PreferenceScreen pref1 = getPreferenceManager().createPreferenceScreen(this);
        pref1.setKey("pref1");
        pref1.setTitle("Title");
        pref1.setSummary("Summary");
        root.addPreference(pref1); 

        PreferenceScreen pref2 = getPreferenceManager().createPreferenceScreen(this);
        pref2.setKey("pref2");
        pref2.setTitle("Title");
        pref2.setSummary("Summary");
        root.addPreference(pref2); 

        PreferenceScreen pref3 = getPreferenceManager().createPreferenceScreen(this);
        pref3.setKey("pref3");
        pref3.setTitle("Title");
        pref3.setSummary("Summary");
        root.addPreference(pref3); 

        return root; 
    } 
}

2

一般的なActivity内でPreferenceFragmentを使用して、ボタンをアクティビティレイアウトに追加するだけです。

public class SettingActivity extends Activity {

    UserProfileViewModel userProfileViewModel = null;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_setting);
        getFragmentManager().beginTransaction()
                .replace(R.id.content, new SettingsFragment())
                .commit();

    }

    private class SettingsFragment extends PreferenceFragment {
        public SettingsFragment() {
        }

        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);

            // Load the preferences from an XML resource
            addPreferencesFromResource(R.xml.pref_main);

        }
    }
}

SettingActivity.java

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/buttonSave"/>

    <Button
        android:id="@+id/buttonSave"
        android:text="Save"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true" />
</RelativeLayout>

activity_setting

ここに画像の説明を入力してください


私はこの提案に従いましたが、ビューの下部にボタンが表示されますが、設定リストの上に重ねられており、クリックできません(つまり、ボタンをクリックしても、その下の設定項目がアクティブになるだけです)。
iaindownie

ボタンonClickListenerは、このソリューションを使用して起動されません
rdehuyss

それ@rdehuyssあなたがonClickListener追加する必要があるためbuttonSave:)
アルバート

1

これは、ronnyの例のアクティビティでのコードのようになります。私の意図は、メニューを画面の下側に置くことでした。

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.prefs);
    addPreferencesFromResource(R.xml.prefs);

   /* LayoutInflater CX = getLayoutInflater();
    CX.inflate(R.layout.main,null);*/
    // TODO Auto-generated method stub
}

1
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ListView
        android:id="@android:id/list"
        android:layout_width="match_parent"
        android:layout_height="@dimens/listview_height" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:text="This is a button on top of all preferences." />
</RelativeLayout>

@Ronnieを参照し、RelativeLayoutを使用して、listviewのlayout_heightの高さを設定してから、ボタンのlayout_alignParentBottom = "true"を設定します。PreferenceScreenの下部にボタンをレンダリングできます。次に@Maxの方法を使用します。それは私のニーズに合っています。


これは良い解決策ですが、ボタンの上にリストビューを設定するのを忘れていました。現在、リストビューのアイテムはボタンの背後にある可能性があります。これが最後のアイテムである場合は表示されず、クリック可能になるため、これはお勧めできません。
Android開発者

ああ、そうです、あなたは正しいです。私のリストビューは5アイテムしかないので、私はこのケースを忘れてしまいました。ありがとう。
Mejonzhan 2013

他の人がこの動作をしないように、回答を更新してください。
Android開発者

また、relativeLayoutのいくつかの属性と終了タグを忘れたと思います。
Android開発者

実際、正しいlistview_heightを設定すると、あなたが言った問題を解決できます。
Mejonzhan 2013

1

Android標準のアプローチでは、アクションバーにアクションボタンを追加することもできます。

public class PrefActivity extends PreferenceActivity{

  @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    }

  @Override
  public boolean onCreateOptionsMenu(Menu menu) {
      // Inflate the menu items for use in the action bar
      MenuInflater inflater = getMenuInflater();
      inflater.inflate(R.menu.preference_header_menu, menu);
      return super.onCreateOptionsMenu(menu);
  }

}


    <?xml version="1.0" encoding="utf-8"?>
       <menu xmlns:android="http://schemas.android.com/apk/res/android">
       <item android:id="@+id/action_add"
           android:icon="@drawable/ic_menu_add_dark"
           android:title="@string/menu_action_add_title"
           android:showAsAction="always"  />

   </menu>

0

Preference Activityのカスタムビュー これは、AndroidのPreferenceActivityにカスタムビューを追加するのに役立ちます。

main.xmlを作成します。必要なビューは、IDがのListViewだけですandroid:id="@android:id/list"

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical" android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:weightSum="1">
        <ListView 
            android:id="@android:id/list" 
            android:layout_weight="1"
            android:layout_width="fill_parent"
                android:layout_height="0dp">
        </ListView>
        <TextView
        android:id="@+id/textView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</LinearLayout>

CustomPreferenceActivity.javaを作成する

public class CustomPreferenceActivity extends PreferenceActivity {
        @Override
        protected void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.main);
                addPreferencesFromResource(R.xml.settings);

                //setup any other views that you have
                TextView textView = (TextView) findViewById(R.id.textView);
textView.setText("View Added");
        }
}

0

以下は、設定画面にクリック可能なボタンを追加する簡単なソリューションです。設定によりandroid:widgetLayoutのスペースがすでに予約されており、ボタンがandroid:onClickでクリックを渡すことができるため、これは簡単になります。

まず、コンテンツを含むbutton.xmlを作成します

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
    android:text="BUTTON"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/button"
    android:onClick="onButtonClick"/>
</LinearLayout>

次に、preferences.xmlに、設定を追加します

<Preference
    android:key="button"
    android:title="Title"
    android:summary="Summary"
    android:widgetLayout="@layout/button" />

PreferenceActivityには、onButtonClickメンバーのみを含める必要があります。

public class MainActivity extends PreferenceActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    addPreferencesFromResource(R.xml.main_preferences);


}

public void onButtonClick(View v) {
    Log.d("Button", "Yeah, button was clicked");
}
}

0

preferences.xml:

    <Preference
        android:key="clearAllData"
        android:title="@string/settings_clear_all_data">
    </Preference>

SettingsFragment.java:

public class SettingsFragment extends PreferenceFragment {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        addPreferencesFromResource(R.xml.settings);

        Preference clearAllData = (Preference) findPreference("clearAllData");

        // setup buttons
        final Context context = getActivity();
        clearAllData.setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() {

            @Override
            public boolean onPreferenceClick(Preference preference) {
                ...
            }
    }

}

0

PreferenceScreenカスタムレイアウト内にコンテナーを「ラップ」するために作成したレイアウト(その後、の下にボタンを追加するListView)は実際には機能しなかったため、上記の回答はすべて使用できないことがわかりました。

これらは、設定リスト(フローティング)の上にカスタムレイアウトをオーバーレイするだけで、(たとえば)新しいカスタムボタンをクリックしても、ボタンの下の設定のみが呼び出されます。

しかし、私はこの解決策を見つけました。これは、を使用するときに、設定リストコンテナの下にボタンを追加するのに役立ちますPreferenceFragment

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.