0

テキストを含む線を表示したいのですが、垂直でも水平でもなく、45°の角度にする必要があります。TextView と View (行の) を含む RelativeLayout に使用しています。RelativeLayout.LayoutParams の助けを借りて、RelativeLayout の x/y 位置を定義しようとしました。水平表示はすでに機能していますが、45° の角度に変更するにはどうすればよいですか?

    RelativeLayout branch_layout = (RelativeLayout) this
            .findViewById(R.id.createrelativelayout);

    LinearLayout branch_item = new LinearLayout(this);
    branch_item.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,
            LayoutParams.WRAP_CONTENT));
    branch_item.setOrientation(1);
    TextView tv = new TextView(this);
    tv.setLayoutParams(new RelativeLayout.LayoutParams(pos, pos));
    tv.setId(id);
    tv.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,
            LayoutParams.WRAP_CONTENT));
    tv.setPadding(20, 0, 20, 0);
    tv.setText(branch_name);
    tv.setOnClickListener(this);

    Rect bounds = new Rect();
    Paint textPaint = tv.getPaint();
    textPaint.getTextBounds(branch_name, 0, branch_name.length(), bounds);
    View underline = new View(this);
    underline.setLayoutParams(new LayoutParams(bounds.width() + 40, 1));
    underline.setBackgroundColor(Color.parseColor("#000000"));

    branch_item_layout = new RelativeLayout(this);
    branch_item_layout.setLayoutParams(new LayoutParams(
            LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
    RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(
            LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    Display display = getWindowManager().getDefaultDisplay();
    //x
    params.leftMargin = display.getWidth()/2;
    //y
    params.topMargin = ((display.getHeight()/2)-(((LinearLayout) this
            .findViewById(R.id.createlinearlayout3)).getWidth()/2)-48);

    //end x
    params.bottomMargin = params.leftMargin + bounds.width();
    //end y
    params.rightMargin = (int) (params.leftMargin - (bounds.width()*Math.sin(45)));

    branch_item.addView(tv);
    branch_item.addView(underline);

    branch_item_layout.addView(branch_item, params);
    branch_layout.addView(branch_item_layout);

画面全体の実装は「横向き」のみです x 0-800, y 0-440 現在、

first x = 400
first y = 114
end x   = 434
end y   = 371

紐とラインを45°の角度で一緒に展示する予定でした。線の長さは文字列の幅に合わせます。

誰かがこのジレンマで私を助けてくれることを願っています.

サスキア

4

1 に答える 1

0

x と y の位置の問題は、relativelayout が非常に巨大になることでした。そこで、branch_item_layout のレイアウトを削除し、branch_item にパラメータとアニメーションを追加しました。

またね、

サスキア

于 2012-03-07T10:02:53.060 に答える