我正在使用Mono for Android开发我的第一款应用。我觉得我正在尝试做一些基本的事情,但我没有运气。从本质上讲,我希望在我的应用程序顶部有一个自定义的“横幅”。横幅只是一个黑色矩形,有两个单词:“Hello”和“World”。你好是红色的,世界是蓝色的。
我没有随处可见。有谁知道怎么做?
谢谢!
答案 0 :(得分:0)
这是一个非常基本的布局示例,可帮助您入门。
<?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>