1
  1. 私がやりたいのは、Android アクティビティ (画面) に単純なヘッダーとフッターを作成することだけです。RelativeLayoutUIで使用しました。
  2. また、ヘッダーにポップアップ メニューを追加したい場合は、どうすればよいでしょうか。

両方の質問に別々に答えてください。ありがとう

4

2 に答える 2

0
You can use like as:activity_header.xml Or You can use RelativeLayout  for this
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="@drawable/header"
    android:orientation="horizontal" >

    <LinearLayout
        android:id="@+id/ll_header"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal|bottom"
        android:layout_marginBottom="2dip"
        android:layout_weight="1"
        android:clickable="true"
        android:gravity="center_vertical|center_horizontal"
        android:orientation="vertical" >

        <ImageView
            android:id="@+id/img_header_icon"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp"
            android:src="@drawable/header_logo" />


    </LinearLayout>

</LinearLayout>
于 2012-10-04T07:39:25.173 に答える
0
For Header You can make an activity_header.xml Class. & it will include in other classes like as-



<include
        android:id="@+id/header"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        layout="@layout/activity_header" />


& for Footer you can use Tab Bar:-
see this:-
http://www.technotalkative.com/android-tab-bar-example-1/
于 2012-10-04T06:49:25.770 に答える