如何将自定义视图与其他 UI 组件一起使用?
How to use Custom Views with other UI components?
我的问题是我想以这样的方式结束:
这是一个插图
所以我需要顶部的工具栏,然后是自定义视图(我使用 canvas 让用户绘制对象 - 圆圈和圆圈之间的边),最后是底部的布局(使用 ImageButton 组件 - 例如清除自定义视图中的 canvas)。
一切正常,除了我无法添加底层(使用 ImageButtons),因为自定义视图占用了所有可用 space。
我的代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
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">
<androidx.appcompat.widget.Toolbar
android:id="@+id/bogoToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#27A9E0"
android:minHeight="45dp"
app:titleTextColor="@android:color/white">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Breadth-First Search Visualization"
android:textColor="#ffffff"
android:textSize="20dp"
android:textStyle="bold"
app:fontFamily="@font/roboto_slab" />
</androidx.appcompat.widget.Toolbar>
<com.globalsoftwaresupport.graph.bfs.BreadthFirstSearchView
android:id="@+id/breadthFirstSearchView"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="68dp"
android:minHeight="100dp"
android:orientation="horizontal">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/quiz_icon" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/quiz_icon2" />
</LinearLayout>
</LinearLayout>
你对我做错了什么有什么建议吗?提前致谢
这个视图有问题
<com.globalsoftwaresupport.graph.bfs.BreadthFirstSearchView
android:id="@+id/breadthFirstSearchView"
android:layout_width="match_parent" <-------
android:layout_height="wrap_content"/>
您的 BreadthFirstSearchView 是 match_parent,它占据了工具栏下方的所有 space,分配权重将使其响应。
<com.globalsoftwaresupport.graph.bfs.BreadthFirstSearchView
android:id="@+id/breadthFirstSearchView"
android:layout_height="0dp"
android:weight="1"
android:layout_width="wrap_content"/>
你最好使用 ConstraintLayout。将工具栏约束到顶部,将带有按钮的 Linearlayout 约束到底部,然后将 BreadthFirstSearchView 顶部约束到工具栏的底部,边距为 0dp,将 BreadthFirstSearchView 的底部约束到 LinearLayout 的顶部,间距为 0dp,并设置 layout_height 的 BreadthFirstSearchView 到 MATCH_CONSTRAINTS(0dp)。您的布局文件应该如下所示:
<androidx.constraintlayout.widget.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">
<androidx.appcompat.widget.Toolbar
android:id="@+id/bogoToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#27A9E0"
android:minHeight="45dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:titleTextColor="@android:color/white">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Breadth-First Search Visualization"
android:textColor="#ffffff"
android:textSize="20dp"
android:textStyle="bold"
app:fontFamily="@font/roboto_slab" />
</androidx.appcompat.widget.Toolbar>
<com.globalsoftwaresupport.graph.bfs.BreadthFirstSearchView
android:id="@+id/breadthFirstSearchView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="0dp"
android:layout_marginBottom="0dp"
app:layout_constraintBottom_toTopOf="@+id/linearLayout"
app:layout_constraintTop_toBottomOf="@+id/bogoToolbar" />
<LinearLayout
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="68dp"
android:minHeight="100dp"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/quiz_icon" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/quiz_icon2" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
最后一件事。如果您希望您的视图显示在 Android Studio 的编辑器中,并且能够从 XML 对其进行扩充。您必须提供此构造函数:
public YourView(Context context, AttributeSet attrs) {
super(context, attrs);
}
祝你好运!
我的问题是我想以这样的方式结束:
这是一个插图
所以我需要顶部的工具栏,然后是自定义视图(我使用 canvas 让用户绘制对象 - 圆圈和圆圈之间的边),最后是底部的布局(使用 ImageButton 组件 - 例如清除自定义视图中的 canvas)。
一切正常,除了我无法添加底层(使用 ImageButtons),因为自定义视图占用了所有可用 space。
我的代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
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">
<androidx.appcompat.widget.Toolbar
android:id="@+id/bogoToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#27A9E0"
android:minHeight="45dp"
app:titleTextColor="@android:color/white">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Breadth-First Search Visualization"
android:textColor="#ffffff"
android:textSize="20dp"
android:textStyle="bold"
app:fontFamily="@font/roboto_slab" />
</androidx.appcompat.widget.Toolbar>
<com.globalsoftwaresupport.graph.bfs.BreadthFirstSearchView
android:id="@+id/breadthFirstSearchView"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="68dp"
android:minHeight="100dp"
android:orientation="horizontal">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/quiz_icon" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/quiz_icon2" />
</LinearLayout>
</LinearLayout>
你对我做错了什么有什么建议吗?提前致谢
这个视图有问题
<com.globalsoftwaresupport.graph.bfs.BreadthFirstSearchView
android:id="@+id/breadthFirstSearchView"
android:layout_width="match_parent" <-------
android:layout_height="wrap_content"/>
您的 BreadthFirstSearchView 是 match_parent,它占据了工具栏下方的所有 space,分配权重将使其响应。
<com.globalsoftwaresupport.graph.bfs.BreadthFirstSearchView
android:id="@+id/breadthFirstSearchView"
android:layout_height="0dp"
android:weight="1"
android:layout_width="wrap_content"/>
你最好使用 ConstraintLayout。将工具栏约束到顶部,将带有按钮的 Linearlayout 约束到底部,然后将 BreadthFirstSearchView 顶部约束到工具栏的底部,边距为 0dp,将 BreadthFirstSearchView 的底部约束到 LinearLayout 的顶部,间距为 0dp,并设置 layout_height 的 BreadthFirstSearchView 到 MATCH_CONSTRAINTS(0dp)。您的布局文件应该如下所示:
<androidx.constraintlayout.widget.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">
<androidx.appcompat.widget.Toolbar
android:id="@+id/bogoToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#27A9E0"
android:minHeight="45dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:titleTextColor="@android:color/white">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Breadth-First Search Visualization"
android:textColor="#ffffff"
android:textSize="20dp"
android:textStyle="bold"
app:fontFamily="@font/roboto_slab" />
</androidx.appcompat.widget.Toolbar>
<com.globalsoftwaresupport.graph.bfs.BreadthFirstSearchView
android:id="@+id/breadthFirstSearchView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="0dp"
android:layout_marginBottom="0dp"
app:layout_constraintBottom_toTopOf="@+id/linearLayout"
app:layout_constraintTop_toBottomOf="@+id/bogoToolbar" />
<LinearLayout
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="68dp"
android:minHeight="100dp"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/quiz_icon" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/quiz_icon2" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
最后一件事。如果您希望您的视图显示在 Android Studio 的编辑器中,并且能够从 XML 对其进行扩充。您必须提供此构造函数:
public YourView(Context context, AttributeSet attrs) {
super(context, attrs);
}
祝你好运!