第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在畫(huà)布上繪制 LinearLayout 視圖消失

在畫(huà)布上繪制 LinearLayout 視圖消失

守著星空守著你 2023-05-10 13:49:39
我正在使用畫(huà)布在 Surface View Camera 上繪制線性布局視圖(插入點(diǎn))。當(dāng)視圖太多時(shí)(例如:在我的情況下為 40),我遇到了一個(gè)問(wèn)題,一些視圖在移動(dòng)相機(jī)時(shí)消失了。我在這里找不到問(wèn)題。setX 和 setY 方法有什么問(wèn)題嗎?你可以在下面看到我的代碼,請(qǐng)回復(fù)它。@Overrideprotected void onDraw(Canvas canvas) {    super.onDraw(canvas);    if (currentLocation == null) {        return;    }    for (int i = 0; i < places.size(); i++) {         float[] currentLocationInECEF = LocationHelper.WSG84toECEF(currentLocation);         float[] pointInECEF = LocationHelper.WSG84toECEF(poiLoc.get(i));         float[] pointInENU = LocationHelper.ECEFtoENU(currentLocation, currentLocationInECEF, pointInECEF);        Matrix.multiplyMV(cameraCoordinateVector, 0, rotatedProjectionMatrix, 0, pointInENU, 0);        if (cameraCoordinateVector[2] < 0 && insertPoint!=null && insertPoint.getChildAt(i)!=null) {            float x = (0.5f + cameraCoordinateVector[0] / cameraCoordinateVector[3]) * canvas.getWidth();            float y = (0.5f - cameraCoordinateVector[1] / cameraCoordinateVector[3]) * canvas.getHeight();            insertPoint.getChildAt(i).setX(x - (insertPoint.getChildAt(i).getWidth()/2));            insertPoint.getChildAt(i).setY(y);            insertPoint.getChildAt(i).setVisibility(VISIBLE);        }    }}預(yù)期結(jié)果:所有視圖都應(yīng)出現(xiàn)在相機(jī)視圖中。實(shí)際結(jié)果:一些視圖在移動(dòng) Camera 和 onDrawCanvas 回調(diào)時(shí)消失。我正在使用這個(gè)庫(kù)https://github.com/dat-ng/ar-location-based-android
查看完整描述

1 回答

?
慕工程0101907

TA貢獻(xiàn)1887條經(jīng)驗(yàn) 獲得超5個(gè)贊

所要做的就是將 LinearLayout 替換為 RelativeLayout,它就像一個(gè)魅力。



查看完整回答
反對(duì) 回復(fù) 2023-05-10
  • 1 回答
  • 0 關(guān)注
  • 169 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)