0

カスタム タイトル バーがあります。スタイル部分はこちら。

<style name="CustomWindowTitleBackground">
    <item name="android:background">#323331</item>
</style>

<style name="CustomTheme" parent="android:Theme">
    <item name="android:windowTitleSize">35dip</item>
    <item name="android:padding">0px</item>
    <item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
    <item name="android:windowBackground">@drawable/gradient</item>
</style>

ここにXMLがあります

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#323331"
android:orientation="horizontal" >

<ImageView
    android:id="@+id/header"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="left"
    android:layout_weight="1"
    android:src="@drawable/satellite" />

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:gravity="right">

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="12sp"/>

    <ImageView
        android:id="@+id/icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/satellite" />

</LinearLayout>


</LinearLayout>

その XML のクラスは次のとおりです。

public class CustomTitle extends Activity {
protected TextView title;
protected ImageView icon;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
    setContentView(R.layout.customtitle);

    title = (TextView) findViewById(R.id.title);
    icon  = (ImageView) findViewById(R.id.icon);

    getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.customtitle);

}

表示方法は次のとおりです。

http://imgur.com/0y5SANf

私の問題は、これら 2 つのimageviews(衛星) を左と右に配置する必要があることです。私はそれを起こさせることができないようです。

なぜ彼らが整列していないのかについて誰かが考えを持っていますか?

のグラフィカル レイアウトでは正しく表示されますがEclipse、エミュレータと物理デバイスで実行すると、図のように表示されます。私の活動は CustomTitle を拡張していることに言及する必要があります。

4

1 に答える 1