自定义标题与其他视图重叠

时间:2019-11-28 05:21:53

标签: android surfaceview title

我正在尝试在项目中使用自定义标题,该标题与surfaceview一起使用,并且应放在顶部标题栏的左侧和右侧。 在使用其他视图之前,标题运行良好,但在其他视图初始化后便消失了。似乎是.xml的问题。

快照附在此处,其中一个带有速度计和一个按钮,另一个仅带有表面视图。按钮也无法显示

no speedometer and button

with speedometer and button

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:custom="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:gravity="center_vertical">

    // add on 07/11/2019 for a test
    <com.example.android.BluetoothChat.MySurfaceView
        android:id="@+id/msurfaceView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <TextView
        android:id="@+id/title_left_text"
        style="?android:attr/windowTitleStyle"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentLeft="true"
        android:layout_weight="1"
        android:ellipsize="end"
        android:singleLine="true"
        android:layout_above="@+id/msurfaceView"/>

    <TextView
        android:id="@+id/title_right_text"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentRight="true"
        android:layout_weight="1"
        android:ellipsize="end"
        android:singleLine="true"
        android:textColor="#fff"
        android:layout_above="@+id/msurfaceView"/>


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:layout_below="@+id/title_left_text">

        <com.example.android.BluetoothChat.Speedometer
            android:id="@+id/Speedometer"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:paddingTop="25dp"
            custom:currentSpeed="0"
            custom:maxSpeed="100" />
    </LinearLayout>

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#9ff048"
        android:text="Button"
        android:layout_below="@+id/Speedometer"/>


</RelativeLayout>

0 个答案:

没有答案