我想在Android Studio中创建自定义组件。这应该是一个按钮,但其中包含其他组件,例如ImageView或ChceckBox。该怎么做?
我已经尝试过创建一个复合控件(带有组件内部的LinearView),但是我无法设置onClickListener来捕获此事件的点击事件,而且它不是那么优雅的解决方案。
我想避免几乎从头开始创建自己的组件(扩展View并覆盖onDraw方法),但是我不知道该如何用其他方式做到这一点。
答案 0 :(得分:1)
您可以使用ConstraintLayout在其他视图之上/之内实现视图,类似这样:
let metalDevice = MTLCreateSystemDefaultDevice()!
let defaultLibrary = metalDevice.makeDefaultLibrary()!
外观如下:
关于点击侦听器-如果要在单击任何视图时执行相同的操作,只需将点击侦听器添加到父版式。
如果您想使用?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"
android:orientation="vertical">
<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:scaleType="fitXY"
tools:srcCompat="@tools:sample/avatars[10]" />
<CheckBox
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:text="check"
app:layout_constraintBottom_toBottomOf="@+id/imageView"
app:layout_constraintEnd_toEndOf="@+id/imageView"
app:layout_constraintStart_toStartOf="@+id/imageView"
app:layout_constraintTop_toTopOf="@+id/imageView" />
</android.support.constraint.ConstraintLayout>
针对不同的视图点击执行不同的操作,则只需为您拥有的每个视图附加点击监听器即可。