我正在使用 Mono for Android 开发我的第一个应用程序。我觉得我正在尝试做一些基本的事情,但我没有任何运气。本质上,我想在我的应用程序顶部有一个自定义“横幅”。横幅只是一个黑色矩形,上面有两个词:“Hello”和“World”。你好是红色的,世界是蓝色的。
我对此无能为力。有谁知道如何做到这一点?
谢谢!
我正在使用 Mono for Android 开发我的第一个应用程序。我觉得我正在尝试做一些基本的事情,但我没有任何运气。本质上,我想在我的应用程序顶部有一个自定义“横幅”。横幅只是一个黑色矩形,上面有两个词:“Hello”和“World”。你好是红色的,世界是蓝色的。
我对此无能为力。有谁知道如何做到这一点?
谢谢!
这是一个非常基本的布局示例,可以帮助您入门。
<?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>