我希望此活动中的白色部分是半透明的,以便我可以部分地看到此下面的活动。此活动使用多个嵌套的LinearLayouts(即,具有红色背景的一个线性布局位于具有白色背景的线性布局内)。我怎么能做到这一点?
这是我的AndroidManifest.xml
文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.h8pathak.dash">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:name="com.example.h8pathak.dash.app.AppController"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".activity.LoginActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".activity.RegisterActivity"/>
<activity android:name=".MainActivity"/>
<activity android:name=".feed.NewsFeed"/>
<activity android:name=".feed.NewPost"/>
<activity android:name=".AnswerPost"
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"/>
<!--android:theme="@android:style/Theme.Translucent.NoTitleBar"-->
</application>
</manifest>
我正在进行的活动是.AnswerPost
答案 0 :(得分:3)
您可以借助
创建透明活动1.使用
使xml文件中的布局背景透明android:background="@android:color/transparent"
2.此外,使清单文件中的主题对于特定的活动是透明的
<activity
android:name="Your activity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" >
</activity>
答案 1 :(得分:3)
您可以按照以下两个步骤进行操作
1.在您的活动中
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setBackgroundDrawable(
new ColorDrawable(android.graphics.Color.TRANSPARENT));
setContentView(R.layout.alarmring);
在您的清单
中<activity
android:name="com.calender.alarms.alarm_interfac_adapter_alarm"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Translucent" >
</activity>
如果您需要任何帮助,请与我们联系。如果它有帮助就标记出来......