如何在Android应用程序中只添加背景图像和链接按钮?

时间:2014-01-25 10:08:58

标签: android eclipse image background hyperlink

我是Android和Eclipse的新手。

我只是想创建一个应用程序。我正在尝试设置背景图像(该图像中的App徽标视图以及其中的一些文本)并且想要创建一个链接到我的网站的按钮。

如何设置背景图像以及如何通过单击虚拟按钮将用户发送到我的网站?

谢谢大家。祝福......

3 个答案:

答案 0 :(得分:2)

这是xml代码。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@null" >

    <Button
        android:id="@+id/btnViewWebsite"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="54dp"
        android:text="Visit Website" />

</RelativeLayout>

在活动中设置活动的onClick操作。你可以使用这个

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(browserIntent);

同样在写入@null的地方,传递图像。 @绘制/ some_image

确保在manifest.xml文件

中添加互联网权限
  <uses-permission android:name="android.permission.INTERNET" />

答案 1 :(得分:0)

试试这个: 创建活动并添加代码 -

final Button btn = (Button) findViewById(R.id.button);
    view = (WebView) findViewById(R.id.web);

    btn.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            view.loadUrl("http://myweb.in");
        }
    });

并使用代码

创建一个xml
 <Button 
   android:id="@+id/button"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:text="Go To Web"
   android:layout_centerInParent="true"/>

 <WebView 
   android:id="@+id/web"
   android:layout_below="@+id/button"
   android:layout_width="match_parent"
   android:layout_height="match_parent"/>

希望这项工作......

答案 2 :(得分:0)

xml中的

 android:background="@drawable/imgname" 

在java中:

_ImageView1.setImageResource(resId);//resId  R.Drawable.imgname