出于某种原因,我在使用 eclipse 和 android SDK 进行设计方面遇到了麻烦。制作布局非常困难,而且不像 WPF/Visual Studio 那样容易。
我正在尝试完成以下任务:
Top: what I have
Bottom: what I want to achieve
当前代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="10dip"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:textIsSelectable="false"
android:id="@+id/line1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:textSize="18sp"
android:layout_weight="1"
android:textStyle="bold"
/>
<TextView
android:textIsSelectable="false"
android:id="@+id/line2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textSize="18sp"
/>
<TextView
android:textIsSelectable="false"
android:id="@+id/line3"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:textSize="18sp"
/>
</LinearLayout>
编辑:
我也尝试在水平线性布局中使用垂直线性布局,但这只会产生很多错误。
编辑2:
差评是怎么回事?
编辑3:
试过这个链接:http ://android-developers.blogspot.ca/2009/02/android-layout-tricks-1.html 用文本视图替换图像,但日期与第一行对齐..嗯