我创建了一个WebView,它将google.com作为测试加载。 在布局的底部是一个SeekBar。 如果Seekbar更改为2的进度,它将例如加载另一个页面,如stackoverflow.com。 如果进度更改为3,则应加载另一页(android.com)
我现有的代码如下。 但我现在不知道如何填补听众。 还有现有的解决方案,它没有用。
activity_main.xml中
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<WebView android:id="@+id/Viewing"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<SeekBar
android:id="@+id/seitenSwitcher"
android:layout_above="@+id/seitenSwitcher"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:max="15"
android:progress="0"
android:paddingLeft="4dip"
android:paddingRight="4dip"
/>
</RelativeLayout>
main.java
package testprojekt.homepageapp.application;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.SeekBar;
public class main extends Activity {
private WebView webv;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
webv = (WebView)findViewById(R.id.Viewing);
webv.setWebViewClient(new WebViewClient());
webv.getSettings().setJavaScriptEnabled(true);
webv.loadUrl("http://www.google.de");
}
public void onProgressChanged(SeekBar seitenSwitcher, int progress, boolean true) {
seitenSwitcher = (SeekBar) findViewById(R.id.seitenSwitcher);
seitenSwitcher.setOnSeekBarChangeListener(new sbListener());
}
}
sbListener.java
package testprojekt.homepageapp.application;
import android.widget.SeekBar;
public class sbListener implements SeekBar.OnSeekBarChangeListener {
???
}
答案 0 :(得分:1)
您需要在侦听器中引用webv
。您可以将其传递给sbListener
的构造函数,也可以删除sbListener
类并执行以下操作:
public class main extends Activity {
private WebView webv;
private SeekBar seitenSwitcher;
private String[] websites = { "http://www.google.de", "http://stackoverflow.com", "http://www.android.com" };
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
webv = (WebView)findViewById(R.id.Viewing);
webv.getSettings().setJavaScriptEnabled(true);
webv.loadUrl(websites[0]);
seitenSwitcher = (SeekBar) findViewById(R.id.seitenSwitcher);
seitenSwitcher.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
@Override
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
if (progress >= 0 && progress < websites.length) {
webv.loadUrl(websites[progress]);
}
}
@Override
public void onStartTrackingTouch(SeekBar seekBar) {
}
@Override
public void onStopTrackingTouch(SeekBar seekBar) {
}
});
}
}
注意,为了使其正常工作,您需要在清单中使用以下权限:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
我还略微修改了xml的布局,并将fill_parent
更改为match_parent
(see here for why):
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<WebView android:id="@+id/Viewing"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_above="@+id/seitenSwitcher"/>
<SeekBar
android:id="@+id/seitenSwitcher"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:max="15"
android:progress="0"
android:paddingLeft="4dp"
android:paddingRight="4dp"
/>
</RelativeLayout>