我正在使用Mono for Android開發我的第一款應用。我覺得我正在嘗試做一些基本的事情,但我沒有任何運氣。基本上,我想在我的應用程序的頂部有一個自定義「橫幅」。橫幅只是一個黑色的長方形,有兩個詞:「你好」和「世界」。你好是紅色的,世界是藍色的。Mono中爲Android應用定製標頭
我沒有得到任何與此。有誰知道如何做到這一點?
謝謝!
我正在使用Mono for Android開發我的第一款應用。我覺得我正在嘗試做一些基本的事情,但我沒有任何運氣。基本上,我想在我的應用程序的頂部有一個自定義「橫幅」。橫幅只是一個黑色的長方形,有兩個詞:「你好」和「世界」。你好是紅色的,世界是藍色的。Mono中爲Android應用定製標頭
我沒有得到任何與此。有誰知道如何做到這一點?
謝謝!
下面是一個非常基本的佈局示例,以幫助您入門。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#000000"
android:padding="5dp" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="2dp"
android:text="Hello"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#FF0000" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="World"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#0000FF" />
</LinearLayout>
<!-- The rest of your activity layout goes here. -->
</LinearLayout>
這將橫幅放在屏幕的頂部。但是,我想要替換初始活動中設置的區域。目前,我的Activity有一個屬性,如下所示:[Activity(Label =「MyApp」,MainLauncher = true,Icon =「@ drawable/icon」)]。 MyApp顯示爲帶有灰色背景的文字。如何用自定義橫幅替換該部分? –
我問完後就想出來了。我用this.RequestWindowFeature(WindowFeatures.NoTitle); –
你的問題是:「有誰知道如何做到這一點?」?答案是肯定的,那裏有人知道如何做到這一點。改述你的問題,並告訴我們你的嘗試。 – Cheesebaron