码迷,mamicode.com
首页 > 移动开发 > 详细

安卓学习第35课——DialogTheme

时间:2014-09-15 21:01:19      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   color   io   os   ar   2014   

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:gravity="center_horizontal">

    <ImageView
    android:layout_width="wrap_content"
    android:layout_height="240dp"
        android:src="@drawable/a" />

    <Button
        android:id="@+id/bn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="确定" />

</LinearLayout>
package com.example.dialogtheme;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class MainActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button bn=(Button) findViewById(R.id.bn);
        bn.setOnClickListener(new OnClickListener(){
            @Override
            public void onClick(View v) {
                //结束改Activity
                finish();
            }
        });
    }
}

bubuko.com,布布扣

安卓学习第35课——DialogTheme

标签:android   style   blog   http   color   io   os   ar   2014   

原文地址:http://www.cnblogs.com/Yvettey-me/p/3973517.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!