ImageView(徽标)未在第二个活动中显示

时间:2017-03-17 09:20:22

标签: java android android-studio imageview

在android Studio中我有2个活动。 1st是带有我的徽标的登录屏幕。第二个是细节,带有我的标志。在工作室里,一切看起来都不错,但是在我的手机上进行测试时,它会显示除了我的imageView(徽标)之外的所有内容。我尝试过,不同的图像,不同的位置。我甚至剪切并粘贴了我的主要活动的布局代码(工作正常)。什么都行不通。

<?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="match_parent"
    android:gravity="center_horizontal"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity"
    android:weightSum="1">

        <!-- Login progress -->




    <TextView
                android:id="@+id/longitude"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true" />

    <ImageView
        android:id="@+id/imageView4"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:srcCompat="@drawable/ic_action_name"
        android:layout_weight="0.42" />

    <TextView
                android:id="@+id/latitude"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@id/longitude"
                android:layout_centerHorizontal="true"/>

    <TextView
        android:id="@+id/driver"
        android:layout_width="32dp"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/location"
        android:layout_alignStart="@+id/location"
        android:layout_below="@+id/latitude"
        android:layout_marginTop="66dp"
        android:layout_weight="0.02" />

</LinearLayout>

1 个答案:

答案 0 :(得分:2)

使用

android:src="@drawable/ic_action_name"

它会将您的drawable设置为此ImageView的内容。