AndroidアプリではToolbar.setTitleメソッドは効果がありません–アプリケーション名がタイトルとして表示されます


298

私はandroid-support-v7:21ライブラリを使用して簡単なアプリケーションを作成しようとしています。

コードスニペット:
MainActivity.java

public class MainActivity extends ActionBarActivity {

    Toolbar mActionBarToolbar;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        mActionBarToolbar = (Toolbar) findViewById(R.id.toolbar_actionbar);            
        mActionBarToolbar.setTitle("My title");
        setSupportActionBar(mActionBarToolbar);
}

activity_main.xml

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    android:orientation="vertical">

    <android.support.v7.widget.Toolbar            
        android:id="@+id/toolbar_actionbar"
        android:background="@null"
        android:layout_width="match_parent"
        android:layout_height="?actionBarSize"
        android:fitsSystemWindows="true" />

</LinearLayout>

しかし、ツールバーの「私のタイトル」の代わりに%application name%が表示されます。メソッドの
ようにsetTitle効果がないようです。
「私のタイトル」をお見せしたいと思います。

UPD: 以前styles.xmlは:

<style name="AppTheme" parent="Theme.AppCompat">
    <item name="windowActionBar">false</item>
</style>

なので、アクションバーは使わないと思いました。私はNoActionBarスタイルの親に追加します:

<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
    <item name="windowActionBar">false</item>
</style>

しかし、問題は解決されていません。


4
FWIW、私はAPIレベル22 にいて、setSupportActionBarを呼び出した後に setTitleを呼び出すと同じ問題が発生しましたが、前に setTitleを呼び出すと問題が発生しました。以下の回答で説明するように、setSupportActionBarを呼び出した後、アクションバーはツールバーの所有権を取得し、ツールバーを直接呼び出すことが機能しない場合があります。あなたの質問で、実際にはsetSupportActionBarの前にsetTitleを呼び出したので、おそらくこれは最近変更されたものです。いずれの場合でも、getSupportActionBar()。setTitleを使用しても同様に機能します。
JHH、2015年


試す-「ツールバーでアクティビティのタイトルを設定するにはどうすればいいですか?」link.medium.com/cGVg3zVr0Z
Werder

回答:


558

解決策を見つけました:

の代わりに:

mActionBarToolbar = (Toolbar) findViewById(R.id.toolbar_actionbar);            
mActionBarToolbar.setTitle("My title");
setSupportActionBar(mActionBarToolbar);

私が使用した:

mActionBarToolbar = (Toolbar) findViewById(R.id.toolbar_actionbar);            
setSupportActionBar(mActionBarToolbar);
getSupportActionBar().setTitle("My title");

そしてそれは機能します。


27
素敵な1つですが、他の方法ではなく、この方法で機能するのは意味がありません
。Android101

28
getSupportActionBar().setTitle("My title");「java.lang.NullPointerException」を生成する可能性があります
Pratik Butani

8
@PratikButani getSupportActionBar()を呼び出す前にツールバーがsetSupportActionBar()として設定されている限り、なぜそうなのでしょうか。
レオン、

3
Aha、簡単に解決:getSupportActionBar()!= nullをアサートします。
レオン

10
みんな@PratikButaniコメントを本当に何度も賛成しましたか?アクションバーはないがカスタムサポートツールバーv7のないスタイルテーマを使用していて、呼び出しを忘れたsetSupportActionBar(mToolbar)場合は、null例外が発生しますが、呼び出した場合は、このメッセージを無視してください。ただ、読み- developer.android.com/training/appbar/setting-up.html
user25を

115

SupportActionBarの設定後、しばらくしてツールバーからタイトルを設定する必要がある場合は、こちらをお読みください。

サポートライブラリの内部実装は、SupportActionBarのセットアップ時にツールバーにタイトル(nullではない)があるかどうかを確認するだけです。存在する場合は、ウィンドウタイトルの代わりにこのタイトルが使用されます。次に、実際のタイトルをロードするときにダミーのタイトルを設定できます。

mActionBarToolbar = (Toolbar) findViewById(R.id.toolbar_actionbar);
mActionBarToolbar.setTitle("");
setSupportActionBar(mActionBarToolbar);

後で...

mActionBarToolbar.setTitle(title);

それは機能しますが、なぜこれが行われなければならないのかは、私には意味がありません。なぜこれが機能するのかについて誰かが説明していますか?
マクスウェル

1
@Maxwellアクションバー/ツールバーの相互作用の設計を考慮すると意味があります。アクティビティはタイトルを表示する必要があります。そのタイトルのないツールバーを提供すると、Androidは従来のアクティビティタイトルコントロールが必要だと想定します。
2017

1
mActionBarToolbar.setTitle(getResources()。getString(R.string.app_name)); 答えの同じ魔法の効果を維持しながら、優れたデフォルトのタイトルがあることを確認します
Eslam Samehアーメド

@うまくいくように、この回答の投票数を確認してください...あなたは何か間違ったことをしただけです
user25

@ user25、それも私にとってはうまくいかず、戻る矢印を削除しました。次に、別の解決策を見つけました:stackoverflow.com/a/40571324/2914140this.setTitle("Title")、ここでthis-はアクティビティへの参照です。
CoolMind

80

上記の答えは完全に真実ですが、私のために働いていません。

私は以下のことで問題を解決しました。

実際、私のXMLは次のようなものです。

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/confirm_order_mail_layout"
    android:layout_width="match_parent"
    android:layout_height="fill_parent">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/confirm_order_appbar_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/confirm_order_list_collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorPrimary"
            app:expandedTitleMarginEnd="64dp"
            app:expandedTitleMarginStart="48dp"
            app:layout_scrollFlags="scroll|enterAlways">

            <android.support.v7.widget.Toolbar
                android:id="@+id/confirm_order_toolbar_layout"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="?attr/colorPrimary"
                app:layout_scrollFlags="scroll|enterAlways"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

            </android.support.v7.widget.Toolbar>
        </android.support.design.widget.CollapsingToolbarLayout>
    </android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>

私はすべてのオプションを試してみましたが、結局削除しCollapsingToolbarLayoutたのは、特に使用する必要がないためです。XML私の最終的なXMLは次のようになります。

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/confirm_order_mail_layout"
    android:layout_width="match_parent"
    android:layout_height="fill_parent">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/confirm_order_appbar_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.v7.widget.Toolbar
            android:id="@+id/confirm_order_toolbar_layout"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

        </android.support.v7.widget.Toolbar>
    </android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>

今、あなたはsetTitle()上記のような答えを使わなければなりません:

mActionBarToolbar = (Toolbar) findViewById(R.id.confirm_order_toolbar_layout);            
setSupportActionBar(mActionBarToolbar);
getSupportActionBar().setTitle("My Title");

あなたが使用したい場合は今CollapsingToolbarLayoutToolbar一緒にあなたが使用する必要がありますsetTitle()CollapsingToolbarLayout

CollapsingToolbarLayout collapsingToolbarLayout = (CollapsingToolbarLayout) findViewById(R.id.confirm_order_mail_layout);
collapsingToolbarLayout.setTitle("My Title");

それはあなたを助けるでしょう。ありがとうございました。


1
それは理にかなっている、CollapsingToolbarLayout解決された問題を取り除く
ブルーウェア

2
私にとっては、CollapsingToolbarLayoutのタイトル設定のトリックが機能します。どうもありがとう!
mysliwiec_tech 2017年

で字幕を変更できますCollapsingToolbarLayoutか?
nrofis 2017年

2
ツールバーはCollapsingToolbarLayoutの下にネストされているため、ツールバーのレイアウトを折りたたむことによってオーバーライドされます。これは私にとってはうまくいきます。
neilQ5

2
あなたは私の命を救います!collapsingToolbarLayout.seTitle( "Title");を使用する前に、両方をサポートする必要があります。
ジャッキー・チョン

35

単にあなたが使用することによって任意の活動名を変更することができます

Acitivityname.this.setTitle("Title NAme");

1
または単にtitle = "Title"Kotlinまたは多分this.setTitle("Title")Javaで。
CoolMind

33

これを試してください。タイトルをXMLで直接定義できます。

 <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:title="some title"
        app:popupTheme="@style/AppTheme.PopupOverlay">

あなたが任意のアイデアがあれば一番簡単だが、まだ私は、動的にカスタムタイトルに必要
あやサラマ

15

各Navbarフラグメントタイトルにタイトルを設定するには

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) 
{
    myView = inflater.inflate(R.layout.second_layout, container, false);
    getActivity().setTitle("title");

    return myView;
}

12

これを試してください..この方法は私のために働きます.. !! それが誰かを助けることを願って.. !!

<android.support.v7.widget.Toolbar  
 xmlns:app="http://schemas.android.com/apk/res-auto"  
 android:id="@+id/my_awesome_toolbar"  
 android:layout_width="match_parent"  
 android:layout_height="wrap_content"  
 android:background="?attr/colorPrimary"  
 android:minHeight="?attr/actionBarSize"  
 app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" >  

<TextView  
   android:id="@+id/toolbar_title"  
   android:layout_width="wrap_content"  
   android:layout_height="wrap_content"  
   android:gravity="center"  
   android:singleLine="true"  
   android:text="Toolbar Title"  
   android:textColor="@android:color/white"  
   android:textSize="18sp"  
   android:textStyle="bold" />  

</android.support.v7.widget.Toolbar>  

ツールバーにロゴを表示するには、以下のスニペットを試してください。//ドローアブルを設定します

toolbar.setLogo(ContextCompat.getDrawable(context, R.drawable.logo));

結果を教えてください。


Ragu Swaminathanに感謝します。私はappCompactアクティビティからSupportActionBarを実装してアクティビティにタイトルを付けようとしましたが、BaseGameActivityを拡張する必要があるため、実行できませんでした。次に、ツールバーに移動しますが、実行中にタイトルが表示されません。ツールバー内のテキストボックスを使用するメソッドは機能しています。同じ状況の人にそれをお勧めします
Sarun1001

ツールバーには、アプリのロゴを設定するメソッドがあります。私の最新の回答をチェックしてください
Ragu Swaminathan 2017

11
 getSupportActionBar().setTitle("Your Title");

2
このような短い回答は低品質と見なされる可能性があるため、この回答はスタブであり、むしろコメントである必要があります。十分な評判を得ると、コメントできるようになります。十分な評判がない場合は、まだ十分な評判がない場合の貢献方法に関するこの投稿を読んでください。
スクリプト作成者

@ascripterそれは答えです
Jemshit Iskenderov

8

参照してくださいhttps://code.google.com/p/android/issues/detail?id=77763を。どうやらそれはそのように動作するはずです。あなたがコールするとsetSupportActionBar()、メソッド呼び出しを、それが正しいビューへの呼び出しをルーティングするアクションバーのデリゲートの責任です。


1
Actionbarデリゲートとは何ですか?ここで、setTitle()はツールバーでは機能せず、サポートアクションバーでも機能しません。ネイティブアクションバーはテーマで無効になっています。一体何が間違っているのですか?Android Studioでソースコードの添付ファイルのみが機能した場合、自分で問題を追跡できます。
WindRider 2015

6

フラグメントからツールバーの名前を変更してみました

それは私を助けました、私は誰かを助けたいと思います

Activity activity = this.getActivity();
Toolbar toolbar = (Toolbar) activity.findViewById(R.id.detail_toolbar);
        if (toolbar != null) {
            activity.setTitle("Title");
        }

//toolbar.setTitle("Title"); did not give the same results

スクリーンショット: ここに画像の説明を入力してください


6

それだけではありません .setTitle

サポートツールバー(Appcompat v7)のその他のメソッドはonCreate

getSupportActionBar().method()

と動作しません mToolbar.method()

例:

getSupportActionBar().setTitle("toolbar title");
getSupportActionBar().setDisplayHomeAsUpEnabled(true);

次の方法ではなくても正常に動作しますgetSupportActionBar()onCreate

mToolbar.setVisibility(View.VISIBLE);
mToolbar.setNavigationOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        //
    }

onCreateイベントでのみ問題が発生します。mToolbar.setTitle()迷惑な代わりに後で使用できます。getSupportActionBar().setTitle()たとえば、これを追加onCreateすると機能します(後で実行されるためonCreate

mHandler.post(new Runnable() {
    @Override
    public void run() {
        mToolbar.setTitle("toolbar title");
    }
});

私はこのソリューションを使用することを好みますhttps://stackoverflow.com/a/26506858/4548520よりもhttps://stackoverflow.com/a/35430590/4548520タイトルを何度も変更する場合(異なる関数で)使用する方が快適ですmToolbar.setTitle()より長いgetSupportActionBar().setTitle()ものよりも、あなたのようなnull例外に関する迷惑な通知は表示されませんgetSupportActionBar().setTitle()


あなたはタイトルを何度も変更したいとして崩壊ツールバーを使用している場合、これが役立ちます:stackoverflow.com/questions/26486730/...
user1506104

6

SupportActionBarは(@sorianiv)を設定した後、ツールバーを通じていくつかの時間を、タイトルを設定する必要がある人のために、あなたのToolbar内にあるCollapsingToolbarLayout、これを読んで:

mToolbarLayout = (CollapsingToolbarLayout) findViewById(R.id.toolbar_layout);
Toolbar toolbar = findViewById(R.id.toolbar);
//toolbar.setTitle(""); // no need to do this
//mToolbarLayout.setTitle("Title"); // if you need an initial title, do this instead
setSupportActionBar(toolbar);

じゃあ後で、

mToolbarLayout.setTitle("New Title");

5

アプリケーションのタイトルはすべてのアクティビティでデフォルトのタイトルとして表示されません。アクティビティごとに異なるタイトルを挿入できます。onCreateの下のアクティビティファイルで、1行を貼り付けてタイトルを設定します。

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        setTitle("Your Title Here");

「Your Title Here」というテキストをあなたのテキストに変更してください。


4

これをアダプターで使用するだけです。MainActivityはAppCompactActivityです。どこからでも電話できます。

((MainActivity) context).getSupportActionBar().setTitle(titles.get(position));

4

私はそれを使用して動作させました-

toolbar.post(new Runnable() {
            @Override
            public void run() {
                toolbar.setTitle("My Title");
            }
        });

1
postUIスレッドでタイトルを変更する場合は、使用する必要はありません。これは、ケースの90%だと思います。
Vadim Kotov

3

CollapsibleToolbarLayout一緒に使用している場合はToolbar、両方のレイアウトでタイトルを設定する必要があります

onCreateメソッドのアクションバーとしてツールバーを設定する

protected void setUpToolBar() {

    if (mToolbar != null) {
        ((HomeActivity) getActivity()).setSupportActionBar(mToolbar);
        mToolbar.setTitleTextColor(Color.WHITE);
        mToolbar.setTitle("List Detail");
        mToolbar.setNavigationOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                getActivity()
                        .getSupportFragmentManager().popBackStack();
            }
        });
        ((HomeActivity) getActivity()).getSupportActionBar()
                .setDisplayHomeAsUpEnabled(true);
    }
}

後でsetTitleメソッドを使用してツールバーのタイトルを更新する

 mToolbar .setTitle(productFromShoppingList.getProductName()); 
 mCollapsingToolbar.setTitle(productFromShoppingList.getProductName());

このソリューションは、タイトルを一度設定できても、その後は変更できない場合に機能します。折りたたみツールバーのタイトルを設定していることを確認してください。
Hylianpuffball

:ツールバーを崩壊にいくつかの時間後にタイトルを変更したい場合は、これを行うことができますstackoverflow.com/questions/26486730/...
user1506104

2

これを試して:

XMLコード

<android.support.v7.widget.Toolbar
    android:layout_width="match_parent"
    android:layout_height="120dp"
    android:id="@+id/tool_bar"
    android:background="@color/tablayout"
    android:theme="@style/ToolBarStyle"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/app_name"
        android:layout_gravity="center"
        android:id="@+id/toolbar_title"
        android:textSize="18sp"
        android:textColor="@color/white"/>
    </android.support.v7.widget.Toolbar>

Javaコード

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    toolbar = (Toolbar) findViewById(R.id.tool_bar);
    toolbar_text = (TextView)findViewById(R.id.toolbar_title);
    setSupportActionBar(toolbar);
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    getSupportActionBar().setDisplayShowTitleEnabled(false);
    toolbar.setLogo(R.drawable.ic_toolbar);
}

2

ツールバーで静的文字列を設定することが目的の場合、最も簡単な方法は、AndroidManifest.xmlでアクティビティラベルを設定することです。

<activity android:name=".xxxxActivity"
          android:label="@string/string_id" />

ツールバーは、コードなしでこの文字列を取得します。(私にとってv27ライブラリで動作します。)


2

私はあなたを助けることができる奇妙な行動をしています。
これは機能していますが、onCreateだけでは効果がありません。

toolbar.setTitle("title");

これをonCreateで使用してみてください。

yourActivityName.this.setTitle("title")

2

異なるアクティビティごとにタイトルを変更するには

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_pizza);
    setTitle(getResources().getText(R.string.title));
}

setTitle(R.string.title); イベントは簡単ですが、機能しません
toshkinl 2017年

2
 public class MainActivity extends AppCompatActivity implements View.OnClickListener {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);

       //custom toolbaar
       getSupportActionBar().setTitle("Abhijeet");

    }
}

1

この特定の設定にはすぐには関係ありませんが、AppBarLayout内でツールバーをラップしていたXMLから "CollapsingToolbarLayout"を削除すると、すべてが機能することがわかりました。

したがって、この:

      <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_height="?attr/actionBarSize"
                app:layout_scrollFlags="scroll|enterAlways"
                app:navigationIcon="@drawable/ic_arrow_back_white_24dp" />

        </android.support.design.widget.AppBarLayout>

これの代わりに:

        <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <android.support.design.widget.CollapsingToolbarLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/collapsingToolbar"
                android:minHeight="?attr/actionBarSize"
                app:layout_scrollFlags="enterAlways|scroll|snap">

                <android.support.v7.widget.Toolbar
                    android:id="@+id/toolbar"
                    android:layout_height="?attr/actionBarSize"
                    app:navigationIcon="@drawable/ic_arrow_back_white_24dp" />
            </android.support.design.widget.CollapsingToolbarLayout>

        </android.support.design.widget.AppBarLayout>

次に、setSupportActionBar()が呼び出される前に、アクティビティのonCreateでタイトルを設定します。


あなたはそれを行うことができます。:あなたは本当に崩壊ツールバーのレイアウトが必要な場合は、このチェックstackoverflow.com/questions/26486730/...
user1506104

@Chantell Osejoも同じレイアウトを使用していて、これは私にとってもうまくいきました。ありがとう
Paramjit Singh Rana

1

これはandroid:labelAndroidManifest.xmlファイルにアクティビティの属性を設定することで実行できます。

<activity android:name="my activity"
 android:label="The Title I'd like to display" />

次に、この行をonCreate()に追加します。

getSupportActionBar().setDisplayShowTitleEnabled(true);

0

このオプションを必ず追加してください:

getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_TITLE);

0

答えはドキュメントにあります(ここにあります):

ActionBarユーティリティメソッドを使用するには、アクティビティのgetSupportActionBar()メソッドを呼び出します。このメソッドは、appcompat ActionBarオブジェクトへの参照を返します。その参照を取得したら、任意のActionBarメソッドを呼び出してアプリバーを調整できます。たとえば、アプリバーを非表示にするには、ActionBar.hide()を呼び出します。

それはあなたが実際に見つけた解決策です。公式ドキュメントへの参照を与えることを考えただけです(明らかにいくつかは読む傾向があります)。


0

Kotlinではこれを行うことができます:

import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
import androidx.appcompat.widget.Toolbar

class SettingsActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_settings)

        val toolbar = findViewById<Toolbar>(R.id.toolbar)
        setSupportActionBar(toolbar)
        supportActionBar?.setDisplayHomeAsUpEnabled(true)
        supportActionBar?.setTitle(R.string.title)

    }

    override fun onSupportNavigateUp() = true.also { onBackPressed() }

}

-2

これは、ツールバーとアクションバーの両方を使用しているために発生しています。ツールバーをアクションバーとして使用する場合、最初に行う必要があるのは、装飾提供のアクションバーを無効にすることです。

最も簡単な方法は、テーマをから拡張することですTheme.AppCompat.NoActionBar


すみません、質問を誤解しました。
Haresh Chhelana 2014年

1
@HareshChhelana回答を投稿しましたが、問題が正確に何であるか知っていますか?
Paresh Mayani 2014年

これは関連するアクションバーセットタイルの問題であり、そのようなansを与えたと思います。これに気付いたとき、私はansを削除したので、誤解された私の兄弟について心配する必要はありません。
Haresh Chhelana 2014年

1
@PareshMayaniはあなたの答えをありがとう、しかしそれは私の問題を解決しません。更新された質問を確認してください
krossovochkin 2014年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.