this is the first canvas.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@drawable/background_linen" >
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TableRow
android:id="@+id/TableRow01"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/TextView03"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" "
android:textAppearance="?android:attr/textAppearanceLarge" />
</TableRow>
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/img1"
android:layout_width="wrap_content"
android:layout_height="150dp"
android:src="@drawable/girbaud1front" />
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" "
android:textAppearance="?android:attr/textAppearanceLarge" />
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/img2"
android:layout_width="320dp"
android:layout_height="150dp"
android:src="@drawable/girbaud4front" />
</TableRow>
<TableRow
android:id="@+id/tableRow4"
android:layout_width="wrap_content"
android:layout_height="wrap_content" …Run Code Online (Sandbox Code Playgroud) 
任何人都可以知道如何做到这一点?
我认为这是一个editText,但我怎样才能同时放置标签和文字?
提前致谢
我想获得我选择的图像的完整路径,并且在我选择图像后出现问题,没有图像出现.
请帮帮我 :)
这是我的代码.
JAVASCRIPT
<script type="text/javascript">
function imgchange()
{
var filePath = $('#file').val();
$("#imgs").attr('src',filePath);
}
</script>
Run Code Online (Sandbox Code Playgroud)
HTML
<form action="#" method="post" enctype="multipart/form-data">
<center>
<table>
<tr>
<td colspan="2"><center><img id="imgs" width="170px" height="160px" ></img></center></td>
</tr>
<tr>
<td align="right"><b><label for="file">Filename:</label></b></td><td><input type="file" name="file" id="file" onchange="imgchange()"></td>
</tr>
</table>
</center>
<div class="buttons_save">
<button class="buttons_profile3" id="btnSubmit" >SAVE</button>
</div>
</form>
Run Code Online (Sandbox Code Playgroud)