1 如何设置 ActionBar的Tab 的颜色?




// 设置actionBar的颜色
Drawable draw = new ColorDrawable(Color.GREEN);
actionBar.setBackgroundDrawable(draw);
draw = new ColorDrawable(Color.GREEN);
// set Tab color
actionBar.setStackedBackgroundDrawable(draw);



2 如何设置 ActionBar的字体居中?
自定义 view!


// 设置自定义显示: 居中字体:
actionBar.setDisplayShowCustomEnabled(true);
actionBar.setCustomView(R.layout.actionbar_coustom_menu);



布局文件:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:text="商城"
/>



</FrameLayout>




3 // 不显示 title
actionBar.setDisplayShowTitleEnabled(false);



4 添加 ListView item


OK


5 10-12 16:45:06.501: E/AndroidRuntime(18541): java.lang.UnsupportedOperationException: addView(View, LayoutParams) is not supported in AdapterView


解决方案:
最后一个参数 修改为: null
convertView = View.inflate(context, R.layout.fragment_shop_listview_item, null);

更多相关文章

  1. android中设置一些没有maxHeight属性控件的最高值
  2. Android(安卓)代码里设置ImageView的src和background
  3. Android(安卓)开发常用代码片段
  4. as报错
  5. Android——自定义ProgressBar显示文字(有缺陷)
  6. Android全屏设置及取消全屏设置
  7. Android(安卓)导航类型
  8. android百度地图半径画圆
  9. 【Android程序开发】EditText详解

随机推荐

  1. android 程序退出
  2. Android应用程序组件间通信(一)——Inten
  3. android usb解析(二)UsbHostManager(and6.0
  4. Android(安卓)Volley框架
  5. 透明Dialog的实现.
  6. Android(安卓)9 使用okhttp3报错 CLEARTE
  7. android的一些知识小记
  8. android osmdroid 实现谷歌地图之定位 替
  9. Android(安卓)解决打包时提示65536问题
  10. Android学习笔记(13):帧布局FrameLayout