我正在尝试使用自定义图片视图,但我认为它不起作用。图像未显示。我已经上网寻求答案,但答案都令人困惑。 :(
这是我的XML:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="activities.JacintoGate">
<activities.ZoomImageView
android:name="activities.ZoomImageView"
android:id="@+id/jgate_view"
android:layout_width="384dp"
android:layout_height="566dp"
android:scaleType="fitXY"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="0dp" />
<ImageButton
android:id="@+id/imageButton2"
style="@android:style/Widget.Holo.Light.ImageButton"
android:layout_width="81dp"
android:layout_height="59dp"
android:layout_marginBottom="8dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="0.707"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.542"
app:srcCompat="@drawable/arrow_up"
tools:layout_editor_absoluteY="274dp"
tools:layout_editor_absoluteX="209dp" />
</android.support.constraint.ConstraintLayout>
活动:
public class JacintoGate extends Activity {
@Override
protected void onCreate( Bundle savedInstanceState ) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_jacinto_gate);
}
private void display() {
ZoomImageView imageView = new ZoomImageView(this, getWindow()
.getWindowManager().getDefaultDisplay().getOrientation());
imageView.setImage(this.getResources().getDrawable(R.drawable.j_gate),
this);
}
我不明白为什么这是错的。我在网上寻找答案,但发现这一切c =如此令人困惑。希望有人能给我一些关于它的信息。谢谢。 :)
答案 0 :(得分:0)
方法display
创建ZoomImageView
的新实例,但它不会获得您在xml上拥有的实例。从您对我的评论的回复中,您需要在方法onCreate
ZoomImageView imageView = (ZoomImageView) = findViewById(R.Id.jgate_view);
imageView.setImage(this.getResources().getDrawable(R.drawable.j_gate), this);