问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

android怎么在代码中设置状态选择器

发布网友 发布时间:2022-05-03 07:57

我来回答

2个回答

热心网友 时间:2023-10-15 11:08

    这个是非常简单的,只需要按照下面的步骤进行即可。

    首先新建一个状态选择器,创建在drawable目录下,创建的格式如下:,记住创建时的名字,待会要使用。

<span style="font-size:14px;"><?xml version="1.0" encoding="utf-8"?>  
    <selector xmlns:android="http://schemas.android.com/apk/res/android">  
      
        <item android:drawable="@drawable/function_greenbutton_pressed" android:state_pressed="true"/>//按下的图片  
        <!-- pressed -->  
        <item android:drawable="@drawable/function_greenbutton_pressed" android:state_focused="true"/>//获取焦点的图片  
        <!-- focused -->  
        <item android:drawable="@drawable/function_greenbutton_normal"/>  
        <!-- default -->//默认图片  
</selector>

    然后在布局文件中创建一个button控件

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/btn"/>

    由于View类中PRESSED_ENABLED_STATE_SET值不是公共常量,所以通过继承来实现。

class MyButton extends View {
 
        public MyButton(Context context) {
            super(context);
        }
 
        // 以下这个方法也可以把你的图片数组传过来,以StateListDrawable来设置图片状态,来表现button的各中状态。未选
        // 中,按下,选中效果。
        public StateListDrawable setbg(Integer[] mImageIds) {
            StateListDrawable bg = new StateListDrawable();
            Drawable normal = this.getResources().getDrawable(mImageIds[0]);
            Drawable selected = this.getResources().getDrawable(mImageIds[1]);
            Drawable pressed = this.getResources().getDrawable(mImageIds[2]);
            bg.addState(View.PRESSED_ENABLED_STATE_SET, pressed);
            bg.addState(View.ENABLED_FOCUSED_STATE_SET, selected);
            bg.addState(View.ENABLED_STATE_SET, normal);
            bg.addState(View.FOCUSED_STATE_SET, selected);
            bg.addState(View.EMPTY_STATE_SET, normal);
            return bg;
        }
    }

    然后执行下面的代码即可成功设置状态选择器

 Integer[] mButtonState = { R.drawable.defaultbutton,
                R.drawable.focusedpressed, R.drawable.pressed };
        Button mButton = (Button) findViewById(R.id.button);
        MyButton myButton = new MyButton(this);
        mButton.setBackgroundDrawable(myButton.setbg(mButtonState));

热心网友 时间:2023-10-15 11:08

要显示选择器,使用 createChooser() 创建Intent 并将其传递至 startActivity()。
/*
*一旦您已创建您的 Intent 并设置附加信息,调用 startActivity() 将其发送给系统 。
*如果系统识别可处理意向的多个Activity,它会为用户显示对话框供其选择要使用的应用,
*如图 1 所示。 如果只有一个Activity处理意向,系统会立即开始这个Activity。

startActivity(intent);
*/
// Build the intent
Uri location = Uri.parse("geo:0,0?q=1600+Amphitheatre+Parkway,+Mountain+View,+California");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, location);

// Verify it resolves
PackageManager packageManager = getPackageManager();
List<ResolveInfo> activities = packageManager.queryIntentActivities(mapIntent, 0);
boolean isIntentSafe = activities.size() > 0;

// Start an activity if it's safe
if (isIntentSafe) {
startActivity(mapIntent);
}
代码选择器:

Intent intent = new Intent(Intent.ACTION_SEND);
...

// Always use string resources for UI text.
// This says something like "Share this photo with"
String title = getResources().getString(R.string.chooser_title);
// Create intent to show chooser
Intent chooser = Intent.createChooser(intent, title);

// Verify the intent will resolve to at least one activity
if (intent.resolveActivity(getPackageManager()) != null) {
startActivity(chooser);
}

热心网友 时间:2023-10-15 11:08

    这个是非常简单的,只需要按照下面的步骤进行即可。

    首先新建一个状态选择器,创建在drawable目录下,创建的格式如下:,记住创建时的名字,待会要使用。

<span style="font-size:14px;"><?xml version="1.0" encoding="utf-8"?>  
    <selector xmlns:android="http://schemas.android.com/apk/res/android">  
      
        <item android:drawable="@drawable/function_greenbutton_pressed" android:state_pressed="true"/>//按下的图片  
        <!-- pressed -->  
        <item android:drawable="@drawable/function_greenbutton_pressed" android:state_focused="true"/>//获取焦点的图片  
        <!-- focused -->  
        <item android:drawable="@drawable/function_greenbutton_normal"/>  
        <!-- default -->//默认图片  
</selector>

    然后在布局文件中创建一个button控件

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/btn"/>

    由于View类中PRESSED_ENABLED_STATE_SET值不是公共常量,所以通过继承来实现。

class MyButton extends View {
 
        public MyButton(Context context) {
            super(context);
        }
 
        // 以下这个方法也可以把你的图片数组传过来,以StateListDrawable来设置图片状态,来表现button的各中状态。未选
        // 中,按下,选中效果。
        public StateListDrawable setbg(Integer[] mImageIds) {
            StateListDrawable bg = new StateListDrawable();
            Drawable normal = this.getResources().getDrawable(mImageIds[0]);
            Drawable selected = this.getResources().getDrawable(mImageIds[1]);
            Drawable pressed = this.getResources().getDrawable(mImageIds[2]);
            bg.addState(View.PRESSED_ENABLED_STATE_SET, pressed);
            bg.addState(View.ENABLED_FOCUSED_STATE_SET, selected);
            bg.addState(View.ENABLED_STATE_SET, normal);
            bg.addState(View.FOCUSED_STATE_SET, selected);
            bg.addState(View.EMPTY_STATE_SET, normal);
            return bg;
        }
    }

    然后执行下面的代码即可成功设置状态选择器

 Integer[] mButtonState = { R.drawable.defaultbutton,
                R.drawable.focusedpressed, R.drawable.pressed };
        Button mButton = (Button) findViewById(R.id.button);
        MyButton myButton = new MyButton(this);
        mButton.setBackgroundDrawable(myButton.setbg(mButtonState));

热心网友 时间:2023-10-15 11:08

要显示选择器,使用 createChooser() 创建Intent 并将其传递至 startActivity()。
/*
*一旦您已创建您的 Intent 并设置附加信息,调用 startActivity() 将其发送给系统 。
*如果系统识别可处理意向的多个Activity,它会为用户显示对话框供其选择要使用的应用,
*如图 1 所示。 如果只有一个Activity处理意向,系统会立即开始这个Activity。

startActivity(intent);
*/
// Build the intent
Uri location = Uri.parse("geo:0,0?q=1600+Amphitheatre+Parkway,+Mountain+View,+California");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, location);

// Verify it resolves
PackageManager packageManager = getPackageManager();
List<ResolveInfo> activities = packageManager.queryIntentActivities(mapIntent, 0);
boolean isIntentSafe = activities.size() > 0;

// Start an activity if it's safe
if (isIntentSafe) {
startActivity(mapIntent);
}
代码选择器:

Intent intent = new Intent(Intent.ACTION_SEND);
...

// Always use string resources for UI text.
// This says something like "Share this photo with"
String title = getResources().getString(R.string.chooser_title);
// Create intent to show chooser
Intent chooser = Intent.createChooser(intent, title);

// Verify the intent will resolve to at least one activity
if (intent.resolveActivity(getPackageManager()) != null) {
startActivity(chooser);
}
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
注册保险代理有限公司需要什么资料! 现在什么云手机性价比高一点? 50个可接双宾语的动词 为琵琶独奏曲《春江花月夜》配一首词或诗 我经常看到HI语音里会有什么魅力榜、贡献榜这些排名,我也一直在语音直播... 跨行通怎么激活 父母是农民不知道有没有纳税 普通农民可以算纳税人吗? 农民不交农业税了,是不是纳税人? 小红书上女生缺衣服穿的心情说说四十句 右卵巢大小40*25mm没见大小21*21mm中低回声周边见半环状血流信号这是什么意思 怎么写soul的交友签名 android webview 打开文件选择器后不能批量选择文件 卵巢囊肿有血流信号严重吗 Android有没有文件选择器,类似Java的FileDialog与JFileChooser 没有的话该怎么实现呢? android怎么给控件添加选择器 在文艺报发表的文章属于哪个论文类别 左卵巢旁见混合性回声团,内部可见血流信号是什么病 有些签名里是使用昵称呢还是实名认证啊? 卵巢囊肿可见环状血流信号好还是未见血流信号好 soul为什么评论的时候不是自己的名字 右卵巢旁CDFI条状血流信号 可见血流信号是什么意思 现在,各种软件都兴签名。签名和昵称应该不是一回事吧?从字面上理解,昵称是称呼,签名是不是要设计一个 阴超检查卵巢右侧实性包块 有血流信号 卵巢周边见环状黄体血流信号是什么意思? 彩超卵巢时检查出CDFI:引出低阻血流信号,RI0.55是什么意思 b超左侧卵巢cdfi:见半环状血流信号是什么意思 B超里说:CDFI其内可见少量条状血流信号,是什么意思?体检查出有卵巢囊肿... 华为手机微信用指纹支付保险吗? 艺术类论文的论文格局 android 怎么定义背景选择器 Android 在一个文件夹中点击txt文件,选择一个阅读器,可以读取这个txt文件,怎么实现的? Android中怎么实现打开文件时弹出一个打开方式可供选择的框。 android studio设置状态选择器color怎么用 我问你个问题,文学与艺术和,文艺生活是文艺学术刊物吗? 论文专著属于文学创作吗 在word2003里面怎么把文字弄成左对齐? 在PPT中怎样设置插入表格的宽度?(由于合并了单元格,各单元格的宽度不一样了,怎样才能使其一样宽) 设置里没有微信特效功能了,怎么回事? oppo手机设置里面找不到微信特效怎么办?以前有更新一下就没有了 手机更新了。为啥没有微信特效了? 四川乐至县城哪儿有充电桩? 湛江市爱周高级中学。附近哪有电动车充电站? 读后感 作文 400字 读后感,作文400字 最新郑大一附院东区附近哪有电动自行车充电 读后感作文400多字 宁海充电桩哪里有 读后感400字 作文随便什么读后感,400字