我想创建一个应用程序并设置背景,当前屏幕的截图看起来像,正好说应用程序应该在服务上工作,应该拍摄屏幕截图并设置为背景
我必须做些什么才能得到它?(以任何方式截取应用前景的截图?)
答案 0 :(得分:1)
以下代码允许我的屏幕截图存储在SD卡上,以后用于您的任何需求,例如设置为背景:
首先,添加适当的权限以保存文件:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
这是代码(在Activity中运行):
private void takeScreenshot() {
Date now = new Date();
android.text.format.DateFormat.format("yyyy-MM-dd_hh:mm:ss", now);
try {
// image naming and path to include sd card appending name you choose for file
String mPath = Environment.getExternalStorageDirectory().toString() + "/" + now + ".jpg";
// create bitmap screen capture
View v1 = getWindow().getDecorView().getRootView();
v1.setDrawingCacheEnabled(true);
Bitmap bitmap = Bitmap.createBitmap(v1.getDrawingCache());
v1.setDrawingCacheEnabled(false);
File imageFile = new File(mPath);
FileOutputStream outputStream = new FileOutputStream(imageFile);
int quality = 100;
bitmap.compress(Bitmap.CompressFormat.JPEG, quality, outputStream);
outputStream.flush();
outputStream.close();
openScreenshot(imageFile);
} catch (Throwable e) {
// Several error may come out with file handling or OOM
e.printStackTrace();
}
}
这就是你打开最近生成的图像的方法:
private void openScreenshot(File imageFile) {
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
Uri uri = Uri.fromFile(imageFile);
intent.setDataAndType(uri, "image/*");
startActivity(intent);
}
找到Here
修改强>
制作透明布局
在res/values/styles.xml
文件中添加以下样式(如果没有,请创建它。)这是一个完整的文件:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.Transparent" parent="android:Theme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
</resources>
(值@color/transparent
是我放入#00000000
文件的颜色值res/values/color.xml
。您也可以在以后的Android版本中使用@android:color/transparent
然后将样式应用于AndroidManifest.xml
上的活动,例如:
<activity android:name=".SampleActivity" android:theme="@style/Theme.Transparent">
...
</activity>
修改2
你也可以在ParseColor的一个LinearLayout, Relative, table....
向下alpha上放置透明背景:
#30000000
感谢@ FrankN.Stein
前30&#34;被称为Alpha并指示不透明度,但不是a 百分比。它是一个十六进制数,范围从00到ff(ff是默认值 如果省略)