如何在滚动视图中插入图像和文本视图..
<ScrollView
android:id="@+id/SView"
android:layout_below="@id/tvNama"
android:layout_marginBottom="25dp"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_above="@+id/sound">
<TextView android:id="@+id/tvketerangan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:text="keterangan"
android:textStyle="bold"
android:textColor="#000000"
android:textSize="16sp"/>
<ImageView
android:id="@+id/imageview"
android:layout_width="300dp"
android:layout_height="300dp"
android:src="@drawable/sa"
android:layout_below="@+id/tvketerangan"
android:layout_centerHorizontal="true"/>
</ScrollView>
这是我的代码..如果我删除imageview,textview显示,如果我删除textview imageview显示...
答案 0 :(得分:1)
Piggy支持GiantTree所说的,你应该将你的布局xml改为这样的东西:
$xml = New-Object -TypeName XML
$xml.Load($file)
$xml.configuration.config.option = $newValue
$utf8WithoutBom = New-Object System.Text.UTF8Encoding($false)
$sw = New-Object System.IO.StreamWriter($file, $false, $utf8WithoutBom)
$xml.Save( $sw )
$sw.Close()