Andriod编程中代码编写的Activity中的Layout添加图片

Andriod编程中代码编写的Activity中的Layout添加图片,怎么做?... Andriod编程中代码编写的Activity中的Layout添加图片,怎么做? 展开
 我来答
714egcyvn
2011-07-06 · TA获得超过5330个赞
知道大有可为答主
回答量:4579
采纳率:40%
帮助的人:2524万
展开全部
首先在你的helloworld程序对应的layout配置文件(res/layout/下的XXX.xml文件)中添加一个按钮,具体代码如下
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android=""
android:id="@+id/layout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<!-- 下面这段就是添加的button -->
<Button android:id="@+id/button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="change background" />

</LinearLayout>

然后在你的继承Activity类的java类中添加按钮的事件监听以及事件处理,代码如下:
public class 你的helloworld类名 extends Activity implements OnClickListener {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.你的layout文件名);

//下面的代码用于为按钮注册一个监听
findViewById(R.id.frame_layout).setOnClickListener(new OnClickListener() {
//下面的代码用于处理按钮点击后的事件
public void onClick(View v) {
//下面的代码用于使背景变色
findViewById(R.id.layout).setBackgroundColor(Color.BLUE);
}
});

}

}
bd08106160
推荐于2016-04-06 · TA获得超过278个赞
知道答主
回答量:26
采纳率:0%
帮助的人:0
展开全部

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android";

    android:orientation="vertical"

    android:layout_width="fill_parent"

    android:layout_height="fill_parent"

    android:background="@drawable/qq"

    >

上面的代码是把drawable下的名字为qq的图片作为背景

如果是某个控件比如图片imageview可以在layout中添加

<ImageView

android:id="@+id/imageview0"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:src="@drawable/qq"//添加图片

/>

也可以在代码中添加

本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式