Я хочу реализовать андроид-зум-вид (https://code.google.com/p/android-zoom-view/). Я добавил банку к пути построения. Я создал следующий XML:Как реализовать андроид zoomview?
<?xml version="1.0" encoding="utf-8"?>
<pl.polidea.view.ZoomView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:id="@+id/webcam1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:layout_marginBottom="20dp"
android:scaleType="matrix" />
<ImageView
android:id="@+id/webcam2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:scaleType="matrix" />
</pl.polidea.view.ZoomView>
и добавил следующий код к моей деятельности:
View v = ((LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE))
.inflate(R.layout.zoomable_view, null, false);
v.setLayoutParams(new LinearLayout.LayoutParams(
LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
zoomView = new ZoomView(this);
zoomView.addView(v);
LinearLayout main_container = (LinearLayout) findViewById(R.id.LinearLayout1);
main_container.addView(zoomView);
, что я делаю не так? я получаю следующее сообщение об ошибке:
Caused by: android.view.InflateException: Binary XML file line #2: Error inflating class pl.polidea.view.ZoomView
Да, это сделало это для меня. –