请检查以下布局
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-18-2b83ed2b2468> in <module>()
----> 1 np.where(((dates.notnull()) & (data.a_IND == 0)), np.nan, dates)
TypeError: invalid type promotion
我正在尝试在<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_view_message"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="xxx.xxx.xxx.xxx.activities.ViewMessageActivity">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="24dp"
android:background="@drawable/linear_border"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_marginTop="12dp"
android:orientation="horizontal">
<de.hdodenhof.circleimageview.CircleImageView xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/view_message_channel_img"
android:layout_width="64dp"
android:layout_height="64dp"
android:layout_marginLeft="5dp"
android:src="@drawable/sm_human"
app:civ_border_color="#FF000000"
app:civ_border_width="0.5dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:orientation="horizontal">
<TextView
android:id="@+id/view_message_channel_name_txt"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="John Doe"
android:textColor="@android:color/black"
android:textSize="12sp" />
<TextView
android:id="@+id/view_message_duration_txt"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="2"
android:text="3h Ago"
android:textAlignment="textEnd"
android:textSize="12sp" />
</LinearLayout>
<TextView
android:id="@+id/view_message_time_txt"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="18dp"
android:text="Jan 6 at 4.55 PM"
android:textSize="12sp" />
</LinearLayout>
</LinearLayout>
<TextView
android:id="@+id/view_message_message_txt"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginRight="10dp"
android:layout_marginTop="12dp"
android:text="Daily dose of proper pills"
android:textColor="@android:color/black"
android:textSize="12sp" />
<ImageView
android:id="@+id/view_message_image"
android:layout_width="match_parent"
android:layout_height="256dp"
android:layout_marginTop="12dp"
android:background="@android:color/darker_gray"
/>
<!--<VideoView-->
<!--android:id="@+id/view_message_video_view"-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="256dp"-->
<!--android:layout_marginTop="12dp" />-->
<fm.jiecao.jcvideoplayer_lib.JCVideoPlayerStandard
android:layout_width="match_parent"
android:layout_height="250sp"
android:id="@+id/video_player"/>
<TextView
android:layout_width="match_parent"
android:layout_height="48dp" />
</LinearLayout>
</ScrollView>
</LinearLayout>
中显示图片。案件是每当一个长长的肖像&#34;图像可用它只是拉伸如下。
我尝试使用view_message_image
作为wrap_content
的高度和宽度的高度,但这使图像完全消失,没有任何东西可见。
如何解决此问题?
答案 0 :(得分:0)
在ImageView
;
android:scaleType="fitXY"