-2

私のアプリには2つのアクティビティがあります:

  • MainActivity には SubActivity を開始するためのボタンがあり、このボタンは透明に設定されていません。

  • SubActivity には、setAlpha() によって透過されるボタンがあります。

私の問題は、戻るボタンを押して SubActivity から MainActivity に戻ると、MainActivity のボタンが SubActivity のボタンと同じように透明になることがあります。アプリを終了して再度開くと、この問題が頻繁に発生します。

また、各アクティビティの onResume() で、ボタン 1 のアルファ 255 とボタン 2 のアルファ 120 を設定しようとしましたが、機能しません。ボタン 1 が透明になることもあれば、ボタン 2 が透明でないこともあります。

MainActivity.java をアップロードします。

package com.example.buttondemo;

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


public class MainActivity extends Activity implements OnClickListener {
    private Button button1;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        button1 = (Button) findViewById(R.id.button1);
        button1.setOnClickListener(this);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
        case R.id.button1:
            startActivity(new Intent(this, SubActivity.class));
            break;

        default:
            break;
        }
    }
}

サブアクティビティ.java:

package com.example.buttondemo;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.widget.Button;

public class SubActivity extends Activity {

    private Button button2;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_sub);

        button2 = (Button) findViewById(R.id.button2);
        button2.getBackground().setAlpha(120);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.sub, menu);
        return true;
    }
}

\res\values\strings.xml:

<string name="app_name">ButtonDemo</string>
<string name="action_settings">Settings</string>
<string name="hello_world">Hello world!</string>
<string name="title_activity_sub">SubActivity</string>
<string name="button1_label">button1</string>
<string name="button2_label">button2</string>

\res\layout\activity_main.xml;

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/button1_label"
        android:background="@drawable/button_selector" />

</RelativeLayout>

\res\layout\activity_sub.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".SubActivity" >

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/button2_label"
        android:background="@drawable/button_selector" />

</RelativeLayout>

\res\drawable\button_selector.xml:

<selector
    xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:state_pressed="true"
        android:drawable="@drawable/pressed_button" /> <!-- pressed -->
    <item
        android:state_focused="true"
        android:drawable="@drawable/pressed_button" /> <!-- focused -->
    <item
        android:drawable="@drawable/default_button" /> <!-- default -->
</selector>
4

1 に答える 1

0

この問題はカバーできます。これは、2 つのボタンが同じドローアブル リソース (pressed_button.png と default_button.png) を参照しているためです。ソース コードで button2 を透明に設定すると、その描画可能なリソースにも影響するようです。次に、button1 もこのリソースを参照すると、背景が不安定になります。

ボタンの背景を設定するソース コードを削除しようとしましたが、この問題は発生しません。したがって、この問題の条件は次のとおりだと思います。 - ソース コード (.java) で動的にボタンの同じドローアブル ファイルに背景を設定し、そのうちの 1 つを透明に設定します。

そのため、オリジナルのもの (pressed_button.png、default_button.png) から、button2 用にその pressed_button1.png と default_button1.png という名前のドローアブル リソースのコピーを作成します。これは、button1 が元のドローアブルを参照し、button2 が新しいドローアブルを参照することを意味します。結果は非常に奇妙で、うまく機能します。

また、Android 4.2 でテストを行います。ドローアブル リソースのコピーを作成する方法の他に、android:alpha によって .xml で透過を設定できます。これもうまく機能します。

これが役立つことを願っています!:)

于 2013-03-11T11:33:30.647 に答える