为了账号安全,请及时绑定邮箱和手机立即绑定

apk运行失败!!!

package com.example.apk001;

import android.support.v7.app.ActionBarActivity;
import android.support.v7.app.ActionBar;
import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
import android.os.Build;

public abstract class MainActivity <ToggleButton, ImageView> extends ActionBarActivity implements OnCheckedChangeListener{
private ToggleButton Button;
private ImageView img;    
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        Button = (ToggleButton) findViewById(R.id.toggleButton1);
        img = (ImageView) findViewById (R.id.imageView1);
        
        ((CompoundButton) Button).setOnCheckedChangeListener(this);
        
    }
public void OnCheckedChangeListener(CompoundButton button,boolean isChecked)


{

 ((View) img).setBackgroundResource(isChecked?R.drawable.img01:R.drawable.img02);
}

}



<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <ToggleButton
        android:checked="false"
        android:textOn="开"
        android:textOff="关"
        android:id="@+id/toggleButton1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        
    />

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/img01"
        />
        

</LinearLayout>


正在回答

1 回答

最好能把报错日志贴出来,ImageView不能强转成view吧

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Android攻城狮的第一门课(入门篇)
  • 参与学习       312584    人
  • 解答问题       4633    个

想快速掌握Android应用开发基础,选择学习这门课程就对了。

进入课程

apk运行失败!!!

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信