我对StateListDrawable有一个奇怪的问题,或者可能(可能)我错过了一些东西。我为它创建了一个测试应用程序,并出现同样的问题。所以,这是我在文件test_selection.xml
中的StateListDrawable资源<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true">
<shape android:shape="rectangle" android:background="#ff0000">
<corners android:radius="10dp" />
<gradient android:startColor="#ff5555"
android:endColor="#ff5555" android:angle="0" />
</shape>
</item>
<item android:state_selected="false">
<shape android:shape="rectangle" android:background="#eeeeee">
<corners android:radius="10dp" />
<gradient android:startColor="#eeeeee"
android:endColor="#eeeeee" android:angle="0" />
</shape>
</item>
</selector>
这是一个非常简单的选择器,为选定状态绘制红色,为未选择状态绘制白色矩形。
我的main.xml模板非常简单。我只是使用一个使用选择作为背景的TextView。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="@string/hello"
android:textSize="30dp" android:id="@+id/test_view_example" android:background="@drawable/test_selection"/>
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/refresh"
android:onClick="updateView" android:text="refresh"></Button>
</LinearLayout>
我的活动代码也非常简单。
public class TestDrawableStateActivity extends Activity {
private final static int[] SELECTED_STATE = { android.R.attr.state_selected };
private final static int[] UNSELECTED_STATE = {};
private TextView textView;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
textView = (TextView) findViewById(R.id.test_view_example);
}
@Override
protected void onResume() {
super.onResume();
// Carichiamo la Drawable
if(textView.getBackground().setState(SELECTED_STATE)){
textView.invalidate();
}
}
public void updateView(View view) {
if(textView.getBackground().setState(SELECTED_STATE)){
textView.invalidate();
};
}
}
当Activity启动时,我尝试使用值SELECTED设置Drawable(StateListDrawable)的状态。 看起来一切都很简单......但问题是状态没有显示出来。如果稍后我单击一个按钮并执行方法updateView(),则状态会发生变化。 我的问题在哪里?我哪里错了?
非常感谢 最大
答案 0 :(得分:0)
最后我找到了解决方案。应该是同样的事情,但事实并非如此。我使用了onCreate()版本
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
textView = (TextView) findViewById(R.id.test_view_example);
textView.setSelected(true);
}
令人惊讶的是,调用setSelected(true)
与使用setState()
调用int[]{android.R.attrs.state_selected}
不同。这是由于内部视图状态。
再见 最大