我正在创建一个简单的Android应用程序,它在webview中加载一个网页,并且在启动时显示的图像视图中有一个启动画面作为加载屏幕加载了网址。 我的问题是我想根据屏幕方向加载不同的图像 这是我的代码 activity_main.xml中
<?xml version="1.0" encoding="utf-8"?>
<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:orientation="vertical"
tools:context="com.example.example.MainActivity">
<ImageView android:id="@+id/imageLoading1"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:visibility="visible"
android:src="@mipmap/vert_loading" />
<WebView
android:id="@+id/activity_main_webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"/>
</RelativeLayout>
MainActivity.java
import android.app.Activity;
import android.os.Bundle;
import android.view.MenuItem;
import android.view.View;
import android.webkit.WebSettings;
import android.webkit.WebView;
public class MainActivity extends Activity {
private WebView mWebView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mWebView = (WebView) findViewById(R.id.activity_main_webview);
WebSettings webSettings = mWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
mWebView.loadUrl("https://www.example.com/");
mWebView.setWebViewClient(new MyAppWebViewClient() {
@Override
public void onPageFinished(WebView view, String url) {
//hide loading image
findViewById(R.id.imageLoading1).setVisibility(View.GONE);
//show webview
findViewById(R.id.activity_main_webview).setVisibility(View.VISIBLE);
}
});
}
@Override
public void onBackPressed() {
if (mWebView.canGoBack()) {
mWebView.goBack();
} else {
super.onBackPressed();
}
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
return super.onOptionsItemSelected(item);
}
}
我在同一个文件夹中有横向布局的另一个图像但是如何加载它?
答案 0 :(得分:0)
您可以为每个方向创建不同的布局文件夹。
layout-port
用于纵向模式。 layout-land
用于横向模式。或者,如果您只想更改image src
,可以检测Activity
内的方向更改事件并加载新图片。
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
// Checks the orientation of the screen
if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE)
// Set landscape image src
else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT){
// Set portrait image src
}
答案 1 :(得分:0)
正如Grender所描述的那样,您可以为纵向和横向加载不同的布局。 您也可以使用编程方式。
在onCreate方法中设置imageview src并使用。
int orientation = Activity.getResources().getConfiguration().orientation
if (orientation == Configuration.ORIENTATION_LANDSCAPE)
// Set landscape image src
else if (orientation == Configuration.ORIENTATION_PORTRAIT){
// Set portrait image src
因此,如果您更改屏幕方向,则会再次调用onCreate方法,此代码将决定您的imageview应使用哪个src。
编辑: 感谢Grender提示,在onCreate中你应该使用你的活动资源。