/**
修改标题栏
*/
public class CustomTitle extends Activity {        /**     * Initialization of the Activity after it is first created.  Must at least     * call {@link android.app.Activity#setContentView(int)} to     * describe what is to be displayed in the screen.     */    @Overrideprotected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        // 激活        requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);        setContentView(R.layout.custom_title);        // 设置其布局,左右布局        getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title_1);                final TextView leftText = (TextView) findViewById(R.id.left_text);        final TextView rightText = (TextView) findViewById(R.id.right_text);        final EditText leftTextEdit = (EditText) findViewById(R.id.left_text_edit);        final EditText rightTextEdit = (EditText) findViewById(R.id.right_text_edit);        Button leftButton = (Button) findViewById(R.id.left_text_button);        Button rightButton = (Button) findViewById(R.id.right_text_button);                leftButton.setOnClickListener(new OnClickListener() {            public void onClick(View v) {                leftText.setText(leftTextEdit.getText());            }        });        rightButton.setOnClickListener(new OnClickListener() {            public void onClick(View v) {                rightText.setText(rightTextEdit.getText());            }        });    }}

xml文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/screen"    android:layout_width="match_parent" android:layout_height="match_parent"    android:orientation="horizontal">    <TextView android:id="@+id/left_text"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:ellipsize="marquee"        android:singleLine="true"        android:layout_weight="1"        android:text="@string/custom_title_left" />    <TextView android:id="@+id/right_text"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:layout_weight="1"        android:ellipsize="marquee"        android:singleLine="true"        android:text="@string/custom_title_right" /></LinearLayout>


更多相关文章

  1. Android(安卓)studio不能在布局预览的问题
  2. Android修改文件权限
  3. android上下左右滑动监听
  4. android:xlargeScreens="false" Only for 2.3 above SDK
  5. 修改android默认浏览器
  6. Android中Broadcast的Intent大全
  7. Android(安卓)左右滑动控件
  8. android 通过代码创建页面组件
  9. 2011.06.08——— android 1.6 launcher研究之launcher的左右滑

随机推荐

  1. mysql having用法解析
  2. mysql oracle和sqlserver分页查询实例解
  3. mysql中的limit用法有哪些(推荐)
  4. MySQL删除有外键约束的表数据方法介绍
  5. mysql 5.7.19 二进制最新安装
  6. mysql5.7.19 zip 详细安装过程和配置
  7. mysql zip archive 版本(5.7.19)安装教程
  8. mysql5.7.19 解压版安装教程详解(附送纯净
  9. MySQL 声明变量及存储过程分析
  10. MySQL删除表数据的方法