2017-05-21 10 views
-1

私はアンドロイドアプリケーションを作成しています。アプリケーションの主なアクティビティーは基本アクティビティー・テンプレートを使用します。しかし、別の基本アクティビティテンプレートを使用して新しいアクティビティを作成しようとすると、空のアクティビティテンプレートとしてのみ作成され、基本アクティビティとしては作成されません(content_xmlファイルとフローティングボタンがありません)。 空のアクティビティではアクセスできないツールバーのxmlにアクセスする必要があるため、基本的なアクティビティテンプレートが必要です。 私は、Androidスタジオv2.3.2基本アクティビティを使用できません

ここ

答えて

0

を使用していたサンプルxmlファイルがある

main_activity.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.gadget.coverage.verticle.addmobile.SmapleActivity"> 

<android.support.design.widget.AppBarLayout android:layout_height="wrap_content" 
    android:layout_width="match_parent" 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_smaple" /> 

<android.support.design.widget.FloatingActionButton android:id="@+id/fab" 
    android:layout_width="wrap_content" android:layout_height="wrap_content" 
    android:layout_gravity="bottom|end" android:layout_margin="@dimen/fab_margin" 
    android:src="@android:drawable/ic_dialog_email" /> 

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

私はこれで何をしますか? –

関連する問題