把照片放在android中的xml文本中

时间:2014-01-27 11:28:34

标签: android

我想把照片写在文字上,但我不能这样做,并在照片上打了文字 是否可能,如果答案是肯定的,我该怎么办?
这些是更好地理解故事的图片:enter image description here

enter image description here  这是我的班级:

public class MainActivity extends Activity {


@Override
 protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


    WebView wv = (WebView) findViewById(R.id.webView1);
    wv.setBackgroundColor(0x00000000);
    wv.setHorizontalScrollBarEnabled(false);
    wv.loadUrl("file:///android_asset/aval6.html");
  //        WebSettings webSettings = wv.getSettings();
  //        webSettings.setDefaultFontSize(20);

}

 @Override
 public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

  }

和xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".MainActivity"
android:background="@drawable/backmatn1" >

  <android.webkit.WebView
  android:id="@+id/webView1"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  >

</android.webkit.WebView>


 </RelativeLayout>

0 个答案:

没有答案