我有这个问题,我有2个片段活动,应用主题是"半透明"所以我可以在活动和app之间保持一定程度的透明度。
First Activity,具有扎实的背景,而Second Activity,有部分背景,所以我可以看到第一个活动背后。
按钮(Hello world)调用第二个活动
它适用于Jelly Bean,但随后,一位朋友带着他的手机来了,第一个活动不见了,所以在Second Activity后面,我看到了android图标! (相关图片)
左边是果冻豆4.1.1,右边是kitkat 4.4.2
这就是问题
KitKat和Jelly Bean在处理我遗失的碎片方面有什么区别?
编辑:从片段和清单添加XML
这是fragmend_frist.xml
<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"
android:background="#FFFFFF"
tools:context=".FirstActivity$PlaceholderFragment">
<TextView
android:text="@string/first"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="60dp" />
<Button
android:text="@string/hello_world"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:id="@+id/btnUno"
android:textSize="60dp" />
</RelativeLayout>
这是fragmend_second.xml
<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"
tools:context="com.pojoclan.app.transparentfragments.SecondActivity$PlaceholderFragment"
android:background="#99FF0000"
>
<TextView
android:text="@string/second"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="60dp" />
</RelativeLayout>
清单
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.pojoclan.app.transparentfragments" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".FirstActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".SecondActivity"
android:label="@string/title_activity_second" >
</activity>
</application>
</manifest>