Activity 实现一个界面
有一张背景图,在上面输入文字 用Activity 实现这样一个界面 哪位可以帮帮我,刚接触Android ,能详细一点吗
明天早上交不出来 我就惨了
有一张背景图,在上面输入文字 用Activity 实现这样一个界面 哪位可以帮帮我,刚接触Android ,能详细一点吗
明天早上交不出来 我就惨了
2016-08-09
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.mycompany.wanan.MainActivity">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@mipmap/ic_launcher"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="40dp"
android:text="Hello World!"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
/>
</RelativeLayout>
举报