SLIDING_CONTENT パラメータは、Activity の内容のみを意味し、タイトルバーに触れたときにスライドします。
ActionbarSherlock をインポートすると、うまく動作しないことがわかりました。
ソースコード見ました
これはクラス SlidingMenu (attachToActivity) のコードの一部です。
case SLIDING_CONTENT:
// take the above view out of
View content = activity.findViewById(android.R.id.content);
ViewGroup contentParent = (ViewGroup) content.getParent();
contentParent.removeView(content);
contentParent.addView(this, new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
setContent(content);
// save people from having transparent backgrounds
if (content.getBackground() == null)
content.setBackgroundResource(background);
break;
}
タイトルバーを含むアクティビティで動作しますが、カスタマイズされた abs タイトルバーを知っています.....
何かを変更して SLIDING_CONTENT を有効にするにはどうすればよいですか? ありがとう!!