我正在为BLE设备开发微芯片MLDPTerminal演示的修改版本。我已经修改了ui,并且所有功能都可以正常工作,但是即使我下面的徽标图片在设计模式下也无法在运行时显示。
我尝试了各种在线建议的解决方案,例如将app:srcCompat更改为android:src或android:background,并将框架的背景设置为白色。这些似乎都没有改变任何东西。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:orientation="vertical"
android:theme="@android:style/Theme.WithActionBar">
<!-- Device: Name - xx:xx:xx:xx:xx:xx -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/label_device"
android:textSize="18sp" />
<Space
android:layout_width="5dp"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/deviceNameAndAddress"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/Black"
android:textSize="18sp" />
</LinearLayout>
<!-- State: Connected/Disconnected -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/label_state"
android:textSize="18sp" />
<Space
android:layout_width="5dp"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/connectionState"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/not_connected"
android:textColor="@color/Black"
android:textSize="18sp" />
</LinearLayout>
<!-- Separator line -->
<View
android:id="@+id/separator"
android:layout_width="fill_parent"
android:layout_height="0.2dp"
android:layout_margin="5dp"
android:background="@android:color/darker_gray"
android:visibility="visible" />
<!-- Blue border enclosing Outgoing: label with editable text below and Send button on right -->
<!-- Red border enclosing Incoming: label with text below and Clear button on right -->
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:background="@drawable/border_red"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:orientation="horizontal">
<TextView
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Incoming Data Value"
android:textSize="24sp" />
<Space
android:layout_width="5dp"
android:layout_height="wrap_content" />
<Button
android:id="@+id/clearIncomingButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/clear" />
</LinearLayout>
<TextView
android:id="@+id/incomingText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:background="@android:drawable/editbox_background_normal"
android:maxLines="1"
android:textColor="@color/black"
android:textSize="18sp" />
</LinearLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="395dp"
android:layout_gravity="bottom|center"
android:background="@color/white"
android:visibility="visible" >
<View
android:id="@+id/separator5"
android:layout_width="fill_parent"
android:layout_height="0.2dp"
android:layout_gravity="top"
android:layout_margin="5dp"
android:background="@android:color/darker_gray"
android:visibility="visible" />
<ImageView
android:id="@+id/imageView9"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="top"
android:background="@color/white"
android:src="@drawable/cynergy3" />
</FrameLayout>
</LinearLayout>
通过这些更改,我希望图像是可见的,但是我尝试过的所有更改均未影响到此效果。