58

こんにちは私は設定画面からアクティビティを起動しています。アクティビティは3つの設定で共有されます。このアクティビティのエクストラをxmlで設定できるかどうか疑問に思います

<Preference
    android:key="action_1"
    android:title="@string/action_1_title"
>
    <intent
        android:action="com.package.SHAREDACTION"
    >

    </intent>
</Preference>

私は私が次のようなことをすることができるかどうか疑問に思います

<extras>
     <item
      android:name=""
      android:value=""/>
</extras>

整数を実際に渡すために必要なことはすべてです。エクストラの代わりに、さまざまなアクションとチェックアクションを実行できます。

4

8 に答える 8

113

私は答えを得ました、あなたはそれをこのように使うことができます:

<Preference
    android:key="xxx"
    android:title="xxx"
    android:summary="xxx">
   <intent android:action="xxx" >
         <extra android:name="xxx" android:value="xxx" />
    </intent>        

</Preference>
于 2010-03-05T20:57:29.307 に答える
13

こちらのドキュメントに記載されているインテントのデータフィールドがあります。

これは、XMLプリファレンスのAPIデモアプリケーションで使用され、インテントプリファレンスの例でインテントを起動します。

Preferences.xmlのそのデモからの関連する例のxml:

    <PreferenceScreen
            android:title="@string/title_intent_preference"
            android:summary="@string/summary_intent_preference">

        <intent android:action="android.intent.action.VIEW"
                android:data="http://www.android.com" />

    </PreferenceScreen>

たぶん、このアプローチはあなたのために働くことができますか?

于 2010-01-20T23:46:01.523 に答える
13

設定をpreference.xmlファイルに追加します。

<Preference android:title="user" android:key="user"/>            

次に、setOnPreferenceClickListenerを使用して、エクストラを含むインテントを起動できます。

Preference userButton = (Preference) findPreference("user");
userButton.setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() {
    @Override
    public boolean onPreferenceClick(Preference arg0) {
        Intent intent = new Intent(getActivity(), YourTargetActivity.class);
        intent.putExtra(EXTRA, mUser);
        startActivity(intent);
        return true;
    }
});
于 2013-11-10T07:56:25.610 に答える
13

私のために働いています。

<shortcut
    android:enabled="true"
    android:icon="@mipmap/xxx"
    android:shortcutDisabledMessage="@string/xxx"
    android:shortcutId="xxxx"
    android:shortcutLongLabel="xxx"
    android:shortcutShortLabel="xxx">
    <intent
        android:action="android.intent.action.VIEW"
        android:targetClass="xxx"
        android:targetPackage="xxx">
        <extra
            android:name="intent_name"
            android:value="true" />
    </intent>
</shortcut>
于 2016-10-24T10:04:25.310 に答える
9

エクストラは定数ではないため、xmlではなくJavaコードで渡す必要があります。

Intent intent = new Intent( this, YourTargetActivity.class );
intent.putExtra( EXTRAS_KEY, extras );
yourPref.setIntent( intent );
于 2010-01-17T22:52:00.183 に答える
2

使用できます

<PreferenceScreen
        android:title="@string/title_intent_preference"
        android:summary="@string/summary_intent_preference">

    <intent android:action="android.intent.action.VIEW"
            android:data="hello world" />

</PreferenceScreen>

インテントデータを送信します。次に、アクティビティで次を使用します。

getIntent().getDataString()
于 2016-10-20T04:55:38.547 に答える
1

メールや市場でのレートを送信するには、次のようなものを使用する必要があります

<Preference
        android:title="@string/title_intent_preference"
        android:summary="@string/summary_intent_preference">

    <intent android:action="android.intent.action.VIEW"
            android:data="market://details?id=com.your_package" />

</Preference>
<Preference
        android:title="@string/title_intent_preference"
        android:summary="@string/summary_intent_preference">

    <intent android:action="android.intent.action.VIEW"
            android:data="mailto:your_email@gmail.com" />

</Preference>
于 2013-11-05T12:30:43.740 に答える
0

あなたの質問に対する答えではありませんが、非常に関連性があります。多分誰かがそれが役に立つと思うでしょう。新しいAPI(> 11)の場合、preference-headersファイルがあり、ヘッダーの1つにカスタムインテントを定義できます。ヘッダーの1つにカスタムExtraを追加しようとしましたが、見つけた解決策は次のようになります。

あなたのpreference-headers.xml:

<header 
        android:fragment="com.mypackage.MyPreference$Prefs1Fragment"
        android:title="Intent"
        android:summary="Launches an Intent.">
</header>

「MyPreference」クラス(PreferenceActivityを拡張する)には、次のものがあります。

public static class Prefs1Fragment extends PreferenceFragment {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        Intent intent = new Intent(getActivity(), MyTargetActivity.class);
        // set the desired extras, flags etc to the intent
        intent.putExtra("customExtra", "Something that I used to know");
        // starting our target activity
        startActivity(intent);
        // ending the current activity, which is just a redirector to our end goal
        getActivity().finish();
    }
}
于 2012-11-18T16:05:40.753 に答える