我正在使用文件main.xml
在Android中设计用户界面。我不知道为什么最后TextView
(id:ImageDescription)不起作用。如果我删除ImageView
代码,则最后TextView
将再次有效。
这是我的截图。第一个没有ImageView
标签,第二个有ImageView
如您所见,当有图像时,我看不到行Image descriptor: a cartoon tiger
。
这是我的main.xml
:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/imageTitle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/test_image_title"/>
<TextView
android:id="@+id/imageDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/test_image_date"/>
<ImageView
android:id="@+id/imageDisplay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/test_contentDescription"
android:src="@drawable/test_image"/>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/imageDescription"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/test_image_description"/>
</ScrollView>
</LinearLayout>
感谢您的帮助:)。
答案 0 :(得分:1)
您正在imageview下面添加imageDescription textview,而且您的scrollview也有with和hight为fill_parent,一旦尝试这个
<TextView
android:id="@+id/imageDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/test_image_date"/>
<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/imageDescription"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/test_image_description"/>
</ScrollView>
<ImageView
android:id="@+id/imageDisplay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/test_contentDescription"
android:src="@drawable/test_image"/>
我认为图片太大,如果是这样的话,请尝试以适当的百分比为图片和文字视图指定layout:weight
参数。
答案 1 :(得分:1)
尝试更改XML部分
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
到
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content">
因为您的ScrollView
试图与身高LinearLayout
一样大。
答案 2 :(得分:1)
我的问题有另一个答案,我在这里发帖给谁看了我的帖子,需要更多的答案。我使用android:adjustViewBounds="true"
属性:)