无法在Android中显示ActionBar图标

时间:2015-10-09 19:44:27

标签: android android-layout android-activity

我无法显示动作栏图标,如下图所示 -

enter image description here

布局文件是 -

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent" tools:context=".MainActivity">

<fragment  android:id="@+id/fragment"
android:name="com.nvoids.pradyut.testapp2.MainActivityFragment"
tools:layout="@layout/fragment_main" android:layout_width="fill_parent"
android:layout_height="fill_parent" />

</RelativeLayout>

但是使用此布局文件,我可以查看图标 -

<RelativeLayout 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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">

<TextView android:text="@string/hello_world" android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

</RelativeLayout>

我得到的观点是 -

enter image description here

0 个答案:

没有答案