安卓

5sxhfpxr  于 2021-06-26  发布在  Java
关注(0)|答案(0)|浏览(179)

我可以访问speedview(gettext很好),但settext不起作用!没有错误,但speedview的文本不会更改。
活动导航使用Map框视觉。

public LocationCallback locationCallback = new LocationCallback() {
    @Override
    public void onLocationResult(LocationResult locationResult) {
        super.onLocationResult(locationResult);

        LayoutInflater inflater1 = LayoutInflater.from(LocationService.this);
        View root = inflater1.inflate(R.layout.activity_ar_navigation, null, true);
        TextView speedView = (TextView)root.findViewById(R.id.speed);
        speedView.setText("this is a test");

        (.....)

    }
};

`

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

<com.mapbox.vision.ar.view.gl.VisionArView
    android:id="@+id/mapbox_ar_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

<TextView
    android:id="@+id/speed"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:layout_marginLeft="20dp"
    android:textSize="30dp"
    android:textColor="@android:color/holo_green_light"
    android:background="@color/white"
    android:text=""/>

</FrameLayout>

有什么想法吗?提前谢谢!

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题