-1

我正在制作一个需要显示在三星 Omnia 上看到的滑动动画的 android 应用程序,这将在它可见时显示一个线性布局(当用户将线性布局拖出时)。我在最终的 TransparentPanel 收到一个错误,说它无法解析为一种类型。这个我不熟悉,请问怎么解决???请帮助并提前非常感谢!我正在使用此代码来执行此操作:

public class Animation extends Activity {
/** Called when the activity is first created. */
CheckBox c1,c2,c3;
int key=0;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.testanimation);

    final TransparentPanel popup = (TransparentPanel) findViewById(R.id.popup_window);
    popup.setVisibility(View.GONE);

    final Button btn=(Button)findViewById(R.id.show_popup_button);
    btn.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View arg0) {
            if(key==0){
                key=1;
                popup.setVisibility(View.VISIBLE);
                btn.setBackgroundResource(R.drawable.slid3_n);
            }
            else if(key==1){
                key=0;
                popup.setVisibility(View.GONE);
                btn.setBackgroundResource(R.drawable.slid4_n);
            }
        }
    });

}

}

4

1 回答 1

0

它无法解析为类型,因为TransparentPanel它不是 Android SDK 中定义的类。你创建了一个TransparentPanel类吗?

于 2012-02-06T20:17:05.217 回答