本文整理匯總了Java中android.webkit.WebView.layout方法的典型用法代碼示例。如果您正苦於以下問題:Java WebView.layout方法的具體用法?Java WebView.layout怎麽用?Java WebView.layout使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類android.webkit.WebView
的用法示例。
在下文中一共展示了WebView.layout方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getBitmapFromWebView
import android.webkit.WebView; //導入方法依賴的package包/類
@Nullable
public static Bitmap getBitmapFromWebView(WebView webView) {
try {
int widthMeasureSpec = View.MeasureSpec.makeMeasureSpec(View.MeasureSpec.UNSPECIFIED, View.MeasureSpec.UNSPECIFIED);
int heightMeasureSpec = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED);
//Measure WebView's content
webView.measure(widthMeasureSpec, heightMeasureSpec);
webView.layout(0, 0, webView.getMeasuredWidth(), webView.getMeasuredHeight());
//Build drawing cache and store its size
webView.buildDrawingCache();
int measuredWidth = webView.getMeasuredWidth();
int measuredHeight = webView.getMeasuredHeight();
//Creates the bitmap and draw WebView's content on in
Bitmap bitmap = Bitmap.createBitmap(measuredWidth, measuredHeight, Bitmap.Config.ARGB_8888);
Paint paint = new Paint();
Canvas canvas = new Canvas(bitmap);
canvas.drawBitmap(bitmap, 0, bitmap.getHeight(), paint);
webView.draw(canvas);
webView.destroyDrawingCache();
return bitmap;
} catch (Exception | OutOfMemoryError e) {
e.printStackTrace();
return null;
}
}
示例2: init
import android.webkit.WebView; //導入方法依賴的package包/類
/**
* 係統初始化
*
* @param context
*/
public static void init(Context context)
{
if (CDK.getInstance().getContext() != null)
{
return;
}
Context application = context.getApplicationContext();
// 用於獲取瀏覽器代理
WebView webview = new WebView(context);
webview.layout(0, 0, 0, 0);
WebSettings webSettings = webview.getSettings();
ApplicationInfo applicationInfo = context.getApplicationInfo();
VersionInfo versionInfo = ManifestTools.getVersionInfo(application);
String userAgent = webSettings.getUserAgentString();
// Structure the CDKContext.
CDKContext cdkContext = new CDKContext(application.getPackageName());
//clientInfo.setAppicon(R.drawable.ic_launcher);
cdkContext.setAppicon(applicationInfo.icon);
cdkContext.setAppname(ManifestTools.getApplicationLable(application));
cdkContext.setDeviceType(CDKConfig.Device.PHONE);
cdkContext.setAlias(android.os.Build.MODEL);
cdkContext.setAndroidSdkVersion(android.os.Build.VERSION.SDK_INT);
cdkContext.setMac(DeviceInfoManager.getMacAddress(application));
// Webkit user-agent
cdkContext.setUserAgent(userAgent);
if (versionInfo != null)
{
cdkContext.setAppVersionCode(versionInfo.getVersionCode());
cdkContext.setAppVersionName(versionInfo.getVersionName());
}
// FIXME: Take attention...
cdkContext.addFlags(CDKContext.FLAG_DEBUG | CDKContext.FLAG_RELEASE);
// cdkContext.addFlags(CDKContext.FLAG_DEBUG);
// TODO: 廣告
CDKConfig config = new CDKConfig.Builder(application)
.cdkContext(cdkContext)
.hasAdBanner(false) // 顯示積分Banner
.hasAdPointsWall(true) // 顯示積分牆
.build();
CDK.getInstance().init(config);
}
示例3: getBitmapFromWebView
import android.webkit.WebView; //導入方法依賴的package包/類
@Nullable
public static Bitmap getBitmapFromWebView(WebView webView) {
try {
int widthMeasureSpec = View.MeasureSpec.makeMeasureSpec(View.MeasureSpec.UNSPECIFIED, View.MeasureSpec.UNSPECIFIED);
int heightMeasureSpec = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED);
//Measure WebView's content
webView.measure(widthMeasureSpec, heightMeasureSpec);
webView.layout(0, 0, webView.getMeasuredWidth(), webView.getMeasuredHeight());
//Build drawing cache and store its size
webView.buildDrawingCache();
int measuredWidth = webView.getMeasuredWidth();
int measuredHeight = webView.getMeasuredHeight();
//Creates the bitmap and draw WebView's content on in
Bitmap bitmap = Bitmap.createBitmap(measuredWidth, measuredHeight, Bitmap.Config.ARGB_8888);
Paint paint = new Paint();
Canvas canvas = new Canvas(bitmap);
canvas.drawBitmap(bitmap, 0, bitmap.getHeight(), paint);
webView.draw(canvas);
webView.destroyDrawingCache();
return bitmap;
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
示例4: systemLoader
import android.webkit.WebView; //導入方法依賴的package包/類
/**
* 係統加載
*/
protected void systemLoader(Context context)
{
if (CDK.getInstance().getContext() != null)
{
return;
}
Context application = context.getApplicationContext();
// 用於獲取瀏覽器代理
WebView webview = new WebView(context);
webview.layout(0, 0, 0, 0);
WebSettings webSettings = webview.getSettings();
ApplicationInfo applicationInfo = context.getApplicationInfo();
VersionInfo versionInfo = ManifestTools.getVersionInfo(application);
String userAgent = webSettings.getUserAgentString();
// Structure the CDKContext.
CDKContext cdkContext = new CDKContext(application.getPackageName());
//clientInfo.setAppicon(R.drawable.ic_launcher);
cdkContext.setAppicon(applicationInfo.icon);
cdkContext.setAppname(ManifestTools.getApplicationLable(application));
cdkContext.setDeviceType(CDKConfig.Device.PHONE);
cdkContext.setAlias(android.os.Build.MODEL);
cdkContext.setAndroidSdkVersion(android.os.Build.VERSION.SDK_INT);
cdkContext.setMac(DeviceInfoManager.getMacAddress(application));
// Webkit user-agent
cdkContext.setUserAgent(userAgent);
if (versionInfo != null)
{
cdkContext.setAppVersionCode(versionInfo.getVersionCode());
cdkContext.setAppVersionName(versionInfo.getVersionName());
}
// FIXME: Take attention...
cdkContext.addFlags(CDKContext.FLAG_DEBUG | CDKContext.FLAG_RELEASE);
// cdkContext.addFlags(CDKContext.FLAG_DEBUG);
// TODO: 廣告
CDKConfig config = new CDKConfig.Builder(application)
.cdkContext(cdkContext)
.hasAdBanner(false) // 顯示積分Banner
.hasAdPointsWall(true) // 顯示積分牆
.build();
CDK.getInstance().init(config);
}