`
java4evero
  • 浏览: 47142 次
文章分类
社区版块
存档分类
最新评论

Android窗体自定义标题栏

阅读更多

    自定义实现功能图片如下:

<img src="http://dl.iteye.com/upload/picture/pic/103742/6e3dbc72-b70a-3d18-b5ed-129634a7ba25.jpg" alt="" width="440" height="238">

?

?

?

package com.easyway.titlebar;

import android.app.Activity;
import android.os.Bundle;
import android.view.Window;
/**
 * 自定义窗体标签的样式表格式的使用
 * 1.设置window标题信息
 *       requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); //声明使用自定义标题 
 *      setContentView(R.layout.main); 
 *       //设置窗体样式
 *      getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.title);//自定义布局赋值  
 * 2.在对应的Activity中添加相关的 android:theme="@style/test"管理对应的样式
 * 
 * 	  <activity android:name=".MainActivity" 
 * 	          android:theme="@style/test"> 
 * 	    <intent-filter> 
 * 	         <action android:name="android.intent.action.MAIN" /> 
 * 	         <category android:name="android.intent.category.LAUNCHER" /> 
 * 	    </intent-filter> 
 * 	 </activity>
 * 
 * @author longgangbai
 *
 */
public class AndroidTitleBarActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); //声明使用自定义标题 
        setContentView(R.layout.main); 
        //设置窗体样式
        getWindow().setFeatureInt(
        		Window.FEATURE_CUSTOM_TITLE,  //设置此样式为自定义样式
        		R.layout.title //设置对应的布局
        		);//自定义布局赋值 
   }
}

?

?

strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="hello">Hello World, AndroidTitleBarActivity!</string>
    <string name="app_name">AndroidTitleBar</string>
	<style name="CustomWindowTitleBackground"> 
	    <item name="android:background">@drawable/logo</item>
	</style> 
	
	<style name="test" parent="android:Theme" mce_bogus="1"> 
	    <item name="android:windowTitleSize">40dp</item> 
	    <item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
	</style>
</resources>

?

?

title.xml

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="horizontal"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"> 

    <ImageView android:layout_width="wrap_content" 
        android:layout_centerVertical="true" 
         android:layout_height="wrap_content" 
        android:src="@drawable/qq" /> 
    <TextView android:layout_width="wrap_content" 
        android:layout_centerInParent="true" 
        android:layout_height="wrap_content" 
        android:text="自定义标题栏" /> 

</RelativeLayout>

?

?

?

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.easyway.titlebar"
    android:versionCode="1"
    android:versionName="1.0" >
    <uses-sdk android:minSdkVersion="10" />
    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <!-- 
         主题信息定义在values/strings.xml文件中
        android:theme="@style/test"   
         -->
        <activity
            android:label="@string/app_name"
            android:theme="@style/test" 
            android:name=".AndroidTitleBarActivity" >
            <intent-filter >
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

?

 
   
     
       

             
  • AndroidTitleBar.rar (57.4 KB)

  •          
             
  • 下载次数: 1

  •        

     
   
   
 
0
0
分享到:
评论

相关推荐

    透明与窗体的设置

    其中`requestWindowFeature`用于请求自定义标题栏特性,`setContentView`加载主布局,`setFeatureInt`则用于设置具体的自定义标题栏布局。 #### 半透明与全透明效果 Android也提供了内置的主题样式来实现透明效果...

    android应用程序窗体显示状态操作

    - `FEATURE_CUSTOM_TITLE`:允许自定义标题栏。 - `FEATURE_SWIPE_TO_DISMISS`:在横屏模式下,允许用户通过滑动来关闭Activity。 正确使用`requestWindowFeature()` 的关键是时机,它必须在调用`setContentView()`...

    delphi 悬浮窗体

    - 设置`Caption`为空字符串,隐藏标题栏。 - 设置`AlphaBlend`为`True`,启用透明效果。 - 设置`AlphaBlendValue`为适当的值(0-255),控制透明度。0完全透明,255完全不透明。 2. **窗体定位**: - 为了使...

    android好用的utils集合

    在Android中,获取标题栏或状态栏的高度对于自定义布局或沉浸式体验很有用。此工具类可能包含一个静态方法,用于计算并返回顶部状态栏的高度,通常通过测量布局或者查询系统资源得到。 3. **android 判断网络状态*...

    Android5.06.0新特性 中控件使用

    在 Android 5.0 和 6.0 中,开发者可以通过自定义主题来改变状态栏、标题栏和导航栏的颜色,这一功能极大地增强了应用的美观度与个性化。 ##### 1.1 创建相应的样式文件 为了自定义这些颜色,首先需要创建一个样式...

    窗体颜色渐变

    颜色渐变不仅限于背景,还可以应用于按钮、图标、标题栏等各种界面元素。 在编程中实现窗体颜色渐变,通常有以下几种方式: 1. **图形库和框架支持**:许多图形库和用户界面框架如Qt、WPF、JavaFX、Android的...

    android各种模块代码分类,多达20种以上

    2. **android 获取标题栏状态栏高度**:在自定义布局时,有时需要知道标题栏和状态栏的高度,以便进行精确的界面排版。可以通过`Activity`的`getWindow().getDecorView()`获取根视图,然后测量其顶部到内容区域的...

    delphi-pingmu.rar_delphi 游戏_delphi窗口化_全屏_窗口化

    - **自定义标题栏和边框**:在窗口化游戏时,可能需要隐藏或自定义标题栏和边框,以提供更沉浸式的体验。这可以通过修改窗体样式(如 `Form.StyleServices.EnableVisualStyles`)和覆盖 `Paint` 事件来完成。 - **...

    Android2.03开发教程

    - **2.8 ActionBar**:位于屏幕顶部的应用栏,用于显示应用图标、标题等信息,并提供导航和其他功能。 #### 四、Activity和Fragment **3.1 应用程序的生命周期** 应用程序的生命周期包括启动、运行、暂停、停止和...

    iPhone,iPad,AndroidWeb开发经验1.pdf

    a) 页面结构:由标题栏、内容块和底部导航组成,每个显示的窗体被视为一个独立的页面。 b) 动画效果:基于CSS的@-webkit-keyframes实现动画效果,如淡入淡出。jQuery代码用于添加和移除相应的CSS类,控制页面的显示...

    Delphi 悬浮窗

    开发者可以自定义窗口的边框和非客户区,以去除标准的标题栏和菜单,从而实现悬浮窗的外观。 对于悬浮窗的可拖动性,Delphi7允许开发者通过响应鼠标消息来实现。当用户按下鼠标并移动时,程序会捕获这些消息,计算...

    qt5入门 范例开发大全 Qt 快速入门系列教程

    这包括设置窗口的属性,如大小、位置、标题以及添加菜单栏和工具栏。你还会了解到信号与槽机制,这是Qt事件处理的核心,用于连接UI元素的动作和响应函数。此外,窗体布局(QLayout)管理也是重点,它允许自适应地...

    Tab选项卡控件及Demo源码.zip

    Tab控件的基本结构通常包括一个可滚动的标题栏,显示每个选项卡的标签,以及与这些标签对应的多个内容面板。当用户点击某个选项卡时,相应的内容面板会被展示,而其他面板则被隐藏。这种设计有助于保持界面整洁,...

    DataSnap框架开发指导.docx

    - **菜单栏组件**:菜单栏由`TRectangle`(背景)、`Text`(标题)和`Button`(按钮事件)组成。 - **按钮事件**:通过`MasterButton`绑定特定按钮,点击后显示相关的菜单。 - **显示模式**:使用`Mode`属性控制显示...

    Qt跨平台界面应用开发 - 王桂林老师总结的书籍

    4. **绘制不规则窗体**:Qt也支持创建和绘制不规则形状的窗体。 #### 第十一章 多线程 1. **创建线程方式**:Qt支持两种方式创建线程,通过继承QThread类或使用QRunnable类。 2. **线程的同步**:多线程编程中,...

Global site tag (gtag.js) - Google Analytics