我的一个布局中有一个小的webView,它充当我网站的新闻源。每次我改变轮换时都会重新加载网页。
所以我编辑了代码以包含配置更改和恢复状态。然后调整我的Android清单,以包括配置更改,从开发站点说包括方向和屏幕大小。
这解决了保存状态的问题,但反过来又产生了一个新问题,即我在某些设备上以横向模式设置了不同大小的布局。但是使用清单设置它是如何覆盖屏幕大小的。是在那里保存状态,但没有在我的清单中使用屏幕大小。所以我可以使用我的风景布局
这是我的方向更改代码。
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
// Checks the orientation of the screen
if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
Toast.makeText(this, "landscape", Toast.LENGTH_SHORT).show();
} else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT) {
Toast.makeText(this, "portrait", Toast.LENGTH_SHORT).show();
}
}
@Override
public void onCreate(final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.activity_homescreen);
if (savedInstanceState != null)
((WebView)findViewById(R.id.neweview)).restoreState(savedInstanceState);
svHomeScreen = (ScrollView) findViewById(R.id.svHomeScreen);
svHomeScreen.setScrollbarFadingEnabled(false);
wv = (WebView) findViewById(R.id.neweview
);
wv.setScrollbarFadingEnabled(false);
wv.getSettings().setJavaScriptEnabled(true);
wv.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
wv.getSettings().setRenderPriority(WebSettings.RenderPriority.NORMAL);
wv.getSettings().setLoadsImagesAutomatically(true);
wv.getSettings().setCacheMode(WebSettings.LOAD_DEFAULT);
if (Build.VERSION.SDK_INT >= 19) {
// chromium, enable hardware acceleration
wv.setLayerType(View.LAYER_TYPE_HARDWARE, null);
} else {
// older android version, disable hardware acceleration
wv.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
}
wv.canGoBackOrForward(5);
wv.getSettings().setLoadWithOverviewMode(true);
wv.getSettings().setUseWideViewPort(true);
wv.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
wv.setPadding(0, 0, 0, 0);
wv.loadUrl(NEWS);
然后我的清单文件有
<activity
android:name=".Homescreen"
android:label="@string/title_activity_homescreen"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
/>
我添加了一个容器和一个Web视图片段,但现在当旋转是横向时视图消失了。当我换回时,然后完全消失。所以我尝试添加保存状态和savestate到它加载webview时旋转到横向,但在回到肖像时崩溃的应用程序
答案 0 :(得分:2)
这是一些示例代码,它将WebView作为片段放在活动布局中。在纵向模式下,视图居中,在横向中,它位于底部。两个方向都使用相同的单个WebView实例。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- container layout for the webview fragment
- note the id for this view is the same in both this and the landscape version -->
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="240dp"
android:layout_centerVertical="true"
/>
</RelativeLayout>
res / layout / main.xml(默认/纵向模式)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- container layout for the webview fragment
- note the id for this view is the same in both this and the portrait version -->
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_alignParentBottom="true"
/>
</RelativeLayout>
res / layout-land / main.xml(landscape)
<!-- make the WebView fill its container -->
<WebView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/NewsFeedWbview"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
RES /布局/ webviewfrag.xml
{{1}}
答案 1 :(得分:0)
我认为您可以通过在 AndroidManifest.xml 中为您的活动添加 android:configChanges 来解决所有问题,如下所示:
<activity
android:name=".activities.MyActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label=""
android:theme="@style/MyTheme"
android:parentActivityName=".activities.Home">
</activity>
答案 2 :(得分:0)
好的家伙,所以我怀疑它使用片段进行Webview。我制作了两个片段,一个叫做webivew,一个叫做webviewfragmentlandscape。
然后在创建中我加载了两个片段,但使景观一个看不见,直到设备使用我已经使用的配置更改方法进入景观。这是我的新代码,如果任何身体可以改善我们所做的那将是一个很大的帮助
这是在oncreate之前
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
View Sidepane = findViewById(R.id.NewsFeed);
View Squarepane = findViewById(R.id.NewsFeed2);
// Checks the orientation of the screen
if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
Toast.makeText(this, "landscape", Toast.LENGTH_SHORT).show();
if (Sidepane.getVisibility() == View.VISIBLE) {
Sidepane.setVisibility(View.GONE);}
Squarepane.setVisibility(View.VISIBLE);
} else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT) {
Toast.makeText(this, "portrait", Toast.LENGTH_SHORT).show();
if (Squarepane.getVisibility() == View.VISIBLE) {
Squarepane.setVisibility(View.GONE);
Sidepane.setVisibility(View.VISIBLE);
}
这是在创建
View Sidepane = findViewById(R.id.NewsFeed);
View Squarepane = findViewById(R.id.NewsFeed2);
Squarepane.setVisibility(View.GONE);
Sidepane.setVisibility(View.VISIBLE);
这是肖像的片段
<<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:layout_width="match_parent"
android:layout_height="240dp"
android:id="@+id/NewsFeedWbview"
android:layout_gravity="center_vertical"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
</WebView>
</RelativeLayout>
最后是景观片段
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:layout_width="match_parent"
android:layout_height="100dp"
android:id="@+id/NewsFeedWbview2"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_gravity="bottom">
</WebView>
</LinearLayout>