反弹question:
我制作了一个名为FlingView
的自定义网页视图,其中包含手势事件。上述链接问题中的策略对我来说很好;我的活动布局xml很好:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout_webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:openDrawer="start">
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/coordinator_layout_webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="net.brianclements.android.WebViewActivity">
<net.brianclements.android.FlingView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:keepScreenOn="true" />
</android.support.design.widget.CoordinatorLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view_webview_left"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_webview_drawer_left" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view_webview_right"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="end"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_webview_drawer_right" />
</android.support.v4.widget.DrawerLayout>
onCreate()执行此操作:
setContentView(R.layout.activity_web_view);
并且我已经使用此方法成功加载它:
mWebview = (FlingView) findViewById(R.id.webview);
现在,问题是当我尝试覆盖其中的函数时:
mWebview = new FlingView(this, null) {
@Override
public void onLeftFling() {
Log.d(TAG, ACTIVITY_TAG + "onFling left: ");
someDynamicObject.thatCantBeUsedStatically();
}
@Override
public void onRightFling() {
Log.d(TAG, ACTIVITY_TAG + "onFling right: ");
anotherDynamicObject.thatCantBeUsedStatically();
}
};
那么我现在如何将mWebview
插回布局?第一种铸造方法使它变得如此简单。但是根据我的研究,我认为它现在涉及一些充气器的组合,findViewById()
,addView()
,removeView()
但我似乎无法弄明白。这里有什么想法吗?
答案 0 :(得分:1)
如果您想用当前创建的FlingView替换当前的FlingView,您需要执行以下操作:
CoordinatorLayout cl = (CoordinatorLayout) findViewById(R.id.coordinator_layout_webview);
cl.removeViewAt(0); // removing previous flingview
cl.addView(mWebView, 0); // adding the new inflated one
答案 1 :(得分:1)
View
在setContentView()
调用中实例化,并且您无法在实例化后覆盖类方法。使用必要的覆盖替换为您的匿名实例布局定义的View
将起作用,但它实际上丢弃了从布局创建的实例,并且实际上并不是最简洁的方法。
我会建议另一种方法。在interface
课程中创建FlingView
,可用于将这些操作传达回Activity
;与OnClickListener
非常相似。
例如:
public class FlingView extends WebView {
public interface FlingListener {
void onLeftFling();
void onRightFling();
}
private FlingListener mListener;
public void setFlingListener(FlingListener listener) {
mListener = listener;
}
public void onLeftFling() {
if (mListener != null) {
mListener.onLeftFling();
}
}
public void onRightFling() {
if (mListener != null) {
mListener.onRightFling();
}
}
...
}
在Activity
中,在从膨胀的布局中找到FlingView
实例后,只需在其上设置一个侦听器实例。
setContentView(R.layout.activity_web_view);
...
mWebview = (FlingView) findViewById(R.id.webview);
mWebview.setFlingListener(new FlingView.FlingListener() {
@Override
public void onLeftFling() {
Log.d(TAG, ACTIVITY_TAG + "onFling left: ");
someDynamicObject.thatCantBeUsedStatically();
}
@Override
public void onRightFling() {
Log.d(TAG, ACTIVITY_TAG + "onFling right: ");
anotherDynamicObject.thatCantBeUsedStatically();
}
}
);