我的问题是我想结束这样的事情:
这是一种幻想
所以我需要在顶部有一个工具栏,然后是一个自定义视图(在这里我使用画布让用户绘制对象-圆和圆之间的边缘),最后在底部有一个布局(带有ImageButton组件-用于在自定义视图中清除画布的示例。
一切正常,除了我不能添加最底层(使用ImageButtons),因为自定义视图占用了所有可用空间。
我的代码:
<?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>
您对我做错什么有什么建议吗?预先感谢
答案 0 :(得分:0)
问题在于此视图
<com.globalsoftwaresupport.graph.bfs.BreadthFirstSearchView
android:id="@+id/breadthFirstSearchView"
android:layout_width="match_parent" <-------
android:layout_height="wrap_content"/>
您的BreadthFirstSearchView是match_parent,它占用了工具栏下面的所有空间,分配权重将使其具有响应性。
<com.globalsoftwaresupport.graph.bfs.BreadthFirstSearchView
android:id="@+id/breadthFirstSearchView"
android:layout_height="0dp"
android:weight="1"
android:layout_width="wrap_content"/>
答案 1 :(得分:0)
使用ConstraintLayout会更好。将工具栏约束在顶部,将Linearlayout约束在底部,然后将BreadthFirstSearchView顶部约束在toobar的底部,边界为0dp,将BreadthFirstSearchView的底部约束为LinearLayout的顶部,边界为0dp,然后将BreadthFirstSearchView的layout_height设置为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);
}
祝你好运!