我有这个Android布局:
main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/mainContainer">
<ImageView android:layout_height="wrap_content" android:id="@+id/imageView1"
android:src="@drawable/logo" android:layout_marginTop="30px"
android:layout_marginBottom="50px" android:scaleType="fitCenter" android:layout_width="fill_parent"></ImageView>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
</LinearLayout>
和这个清单文件:
的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mogoolab.android.flowerforyou"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="3" />
<application android:icon="@drawable/logo" android:label="@string/app_name" android:name=".FlowerForYouApp"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
......
</application>
</manifest>
我的主要布局在HTC Sensation(以及使用Android 3.0的AVD上的模拟器中)不会拉伸到全宽,我不知道为什么。
我可以在哪里找到一个教程,了解如何设计与所有更高版本的Android 1.5兼容的Android UI。此外,我还需要学习如何设计Android UI Home Widget。
谢谢