我如何为应用程序实现这种类型的布局。我需要这种类型的应用程序布局。
问问题
63 次
2 回答
4
看看这个图书馆。它对您的情况很有用。
于 2013-10-16T06:28:03.277 回答
0
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/txtTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:layout_marginTop="15dp"
android:text="News Titlessssssss ssssssssssssssssss"
android:textAppearance="?android:attr/textAppearanceLarge" />
<ImageView
android:id="@+id/image"
android:layout_width="100dp"
android:layout_height="220dp"
android:layout_alignParentRight="true"
android:layout_below="@+id/txtTitle"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:background="@drawable/ic_launcher" />
<TextView
android:id="@+id/news_detail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/txtTitle"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:layout_toLeftOf="@+id/image"
android:text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" />
</RelativeLayout>`
于 2013-10-15T06:18:10.670 回答