2016-03-18 5 views
0

私はhow to create a settings activity using a fragmentの公式Androidのドキュメントを踏襲しているが、私はこの結果を得た:のAppバーの重複設定

enter image description here

を「私は設定内容に上マージンを設定しようとしたが、それはdidnの結果を変更すると、設定がまだアプリバーの下に表示されます(図のように表示されます)。ここ

マイセッティング活動

public class SettingsActivity extends AppCompatActivity { 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_settings); 
     Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); 
     setSupportActionBar(toolbar); 

     // Display the settings fragment as the main content. 
     getFragmentManager().beginTransaction() 
       .replace(android.R.id.content, new SettingsFragment()) 
       .commit(); 


    } 

} 

何も空想、私はレイアウトファイルをロードし、設定のリストでフラグメントを挿入します。

だから、これは私のコードの関連部分です。

再度設定フラグメント

public class SettingsFragment extends PreferenceFragment { 

    public SettingsFragment() { 
     // Required empty public constructor 
    } 

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

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

} 

、派手な何も、私は単に彼らのXMLファイルから設定をロードします。

設定アクティビティのレイアウト

<?xml version="1.0" encoding="utf-8"?> 
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" 
    tools:context="com.mydomain.myapp.SettingsActivity"> 

    <android.support.design.widget.AppBarLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:theme="@style/AppTheme.AppBarOverlay"> 

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

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

    <include layout="@layout/content_settings" /> 

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

設定アクティビティのコンテンツのレイアウト

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:paddingBottom="@dimen/activity_vertical_margin" 
    android:paddingLeft="@dimen/activity_horizontal_margin" 
    android:paddingRight="@dimen/activity_horizontal_margin" 
    android:paddingTop="@dimen/activity_vertical_margin" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    tools:context="com.mydomain.myapp.SettingsActivity" 
    tools:showIn="@layout/activity_settings"> 

</RelativeLayout> 

私はとにかくXML設定ファイルからすべてをロードしていますので、これは今のところは空です。

設定アクティビティの内容がアクティビティのアプリケーションバーのすぐ下にあることを確認するにはどうすればよいですか?

答えて

2

あなたのRelativeLayoutにIDを追加し、それをあなたのFragmentManager.replaceのIDとして使用してください。これにより、システム全体のウィンドウの代わりにフラグメントコンテナのRelativeLayoutが使用されます。

+0

Perfect、thanks :) – user1301428

関連する問題