如何绘制相对于另一个视图的位置

时间:2016-02-07 23:17:01

标签: android android-layout android-shapedrawable

我试图在TextView下绘制一条线(创建一个橡皮桥评分表,其中有问题的线条反映了虚线here)。我无法弄清楚如何获得最底层TextView的位置,并使用这些数字在正确的位置创建一条线。该行目前远低于TextView,它应该紧接在下面,即:

40
---< ----我想要这个(接近数字)

40

---< ----我得到这个(远离数字)

该行确实根据最底层TextView的垂直位置改变位置,所以我认为我成功地检索了它的位置,但不知怎的,我没有正确使用它来画线。

这里是获取TextView位置并将其发送到线条绘制方法的代码:

    findViewById(R.id.main).getViewTreeObserver().addOnGlobalLayoutListener(
            new ViewTreeObserver.OnGlobalLayoutListener() {
                @Override
                public void onGlobalLayout() {
                    //remove listener
                    if( Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN )
                        findViewById(R.id.main).getViewTreeObserver()
                                .removeOnGlobalLayoutListener(this);
                    else
                        findViewById(R.id.main).getViewTreeObserver()
                                .removeGlobalOnLayoutListener(this);

                    TextView bottomTextView = (TextView) weGameLayout
                            .getChildAt(weGameLayout.getChildCount() - 1);
                    int[] pos = new int [2];
                    bottomTextView.getLocationOnScreen(pos);
                    int gameLinePosition = pos[1];
                    int height = bottomTextView.getHeight();
                    ((BackgroundLines)findViewById(R.id.background_lines))
                            .addGameLine(gameLinePosition + height - topdiff);
                }
            }
    );

以下是线条绘制方法:

public void addGameLine(int position) {
    ShapeDrawable line = new ShapeDrawable(new RectShape());
    gameLines.add(line);
    gameLinePositions.add(position);
    invalidate();
}
@Override
public void onDraw(Canvas canvas) {
    int width = this.getWidth();
    for( int i=0; i < gameLines.size(); ++i ){
        ShapeDrawable gameLine = gameLines.get(i);
        int position = gameLinePositions.get(i);
        gameLine.setBounds(0, position-2, width, position+2);
        gameLine.draw(canvas);
    }
}

如果有更多信息有用,请告诉我!这似乎是一个微妙的问题,并且有点难以描述,但我认为我对android的布局或绘图管理的无知大多是错误的。

编辑这里的主要布局。这很长,但几乎所有相关的东西都在我认为的顶部

<?xml version="1.0" encoding="utf-8"?>

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

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:elevation="4dp"
        android:theme="@style/ThemeOverlay.AppCompat.ActionBar" />

    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/main"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        android:background="@drawable/parchment_scroll_background"
        tools:context="com.pianomansb.betterbridgescoresheet.MainActivity">

        <com.pianomansb.betterbridgescoresheet.BackgroundLines
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/background_lines" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal">

            <LinearLayout
                android:id="@+id/we_column"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:orientation="vertical">

                <LinearLayout
                    android:id="@+id/we_upper"
                    android:layout_width="match_parent"
                    android:layout_height="0dp"
                    android:layout_weight="1"
                    android:orientation="vertical">

                    <TextView
                        android:id="@+id/we_text"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center_horizontal"
                        android:text="@string/we_text"
                        style="@style/WeTheyFont"/>

                    <LinearLayout
                        android:id="@+id/we_bonus"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:orientation="vertical"
                        android:gravity="bottom">

                    </LinearLayout>

                </LinearLayout>

                <LinearLayout
                    android:id="@+id/we_game"
                    android:layout_width="match_parent"
                    android:layout_height="0dp"
                    android:layout_weight="1"
                    android:orientation="vertical">

                </LinearLayout>

            </LinearLayout>

            <LinearLayout
                android:id="@+id/they_column"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent"
                android:orientation="vertical">

                <LinearLayout
                    android:id="@+id/they_upper"
                    android:layout_width="match_parent"
                    android:layout_height="0dp"
                    android:layout_weight="1"
                    android:orientation="vertical">

                    <TextView
                        android:id="@+id/they_text"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center_horizontal"
                        android:text="@string/they_text"
                        style="@style/WeTheyFont"/>

                    <LinearLayout
                        android:id="@+id/they_bonus"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:orientation="vertical"
                        android:gravity="bottom">

                    </LinearLayout>

                </LinearLayout>

                <LinearLayout
                    android:id="@+id/they_game"
                    android:layout_width="match_parent"
                    android:layout_height="0dp"
                    android:layout_weight="1"
                    android:orientation="vertical">

                </LinearLayout>

            </LinearLayout>
        </LinearLayout>
    </FrameLayout>
</LinearLayout>

1 个答案:

答案 0 :(得分:1)

听起来你正在尝试比通常的视图布局工具更复杂的事情。我不会告诉你不要这样做,但我会建议一种完全不同的方法,对你来说可能更容易。

我会将整个事物视为自定义视图(除非它可能非常高,然后它可能是完全不同的问题。请确保您的View子类正确地公布其首选高度和宽度。

在onDraw中,像往常一样在Canvas上绘制线条。请注意,您还可以在Canvas上绘制文本而无需TextView。只需使用Canvas.drawText()按照您想要的方式定位文本,然后使用该方法的Paint参数来调整文本的大小和颜色。

我希望这对你来说是一个更好的策略。