gpt4 book ai didi

java - relativeLayout 和 Canvas 服装 View

转载 作者:行者123 更新时间:2023-12-01 14:04:00 25 4
gpt4 key购买 nike

我想用这种结构进行 Activity :

Desired layout这个想法是在顶部放置一些文本,在顶部放置一个横幅,在横幅上方放置按钮,并将我的 Canvas 放在 View 的中心,使用所有可能的空间。

我对 View 进行子类化以绘制 Canvas 并重载 onMeasure() 方法:

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
// Calculate the size of the board
this.squareSize = MeasureSpec.getSize(widthMeasureSpec) / BOARD_NUM_ROWS;
this.leftMargin = (MeasureSpec.getSize(widthMeasureSpec) - squareSize*BOARD_NUM_COLUMNS) / 2;
this.topMargin = this.leftMargin;

// Set the size of the board to full width and aspect ratio height
int desiredWidth = MeasureSpec.getSize(widthMeasureSpec);
int desiredHeight = this.topMargin + (BOARD_NUM_ROWS * this.squareSize) + this.topMargin;

this.setMeasuredDimension(desiredWidth, desiredHeight);
}

这是我的 XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".DrawLevelActivity"
android:background="@color/activity_background">

<TextView
android:id="@+id/instructionsText"
android:gravity="center"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />

<com.mycanvas.BoardCanvas
android:id="@+id/boardCanvas"
android:gravity="center"
android:layout_below="@+id/instructionsText"
android:layout_centerVertical="true"
android:padding="0dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

<Button
android:id="@+id/solveButton"
android:gravity="center"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:paddingLeft="30dp"
android:paddingRight="30dp"
android:layout_below="@+id/boardCanvas"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>

<com.google.ads.AdView
xmlns:googleads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/adView"
android:gravity="center"
android:paddingTop="0dp"
android:paddingBottom="0dp"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:layout_alignParentBottom="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"

googleads:adSize="BANNER"
googleads:adUnitId="@string/admob_id" />

</RelativeLayout>

不幸的是,该按钮出现在横幅下方,我认为原因是 Canvas 太大。

onMeasure()中设置的值总是小于MeasureSpec.getSize(heightMeasureSpec)

最佳答案

这里的关键是使用 LinearLayout 为您的 Canvas 设置 layout_weight 值。这样,顶部和上方 View 将包裹其内容,并且 Canvas 将填充可用空间。布局 xml 看起来像这样。-

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:gravity="center_vertical|center_horizontal"
android:background="#990099"
android:text="Some text here" />

<RelativeLayout
android:id="@+id/canvas"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#999900"
android:layout_weight="1">
<!-- The canvas -->
</RelativeLayout>

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button" />

<RelativeLayout
android:id="@+id/banner"
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="#009999">
<!-- The banner -->
</RelativeLayout>

</LinearLayout>

请注意,我设置了一些硬编码的高度和颜色,以便您可以轻松查看结果。这个布局将呈现这样的 View 。-

enter image description here

关于java - relativeLayout 和 Canvas 服装 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19083822/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com