2011-09-09 11:58:11 +00:00
|
|
|
|
2011-11-23 20:18:18 +00:00
|
|
|
<LinearLayout android:id="@+id/article_fragment" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal">
|
2011-11-24 11:51:23 +00:00
|
|
|
<ImageView android:layout_weight="0" android:background="?articleDivider" android:layout_width="wrap_content" android:paddingLeft="4dip" android:layout_height="match_parent"></ImageView>
|
2011-11-23 20:18:18 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linerLayout2"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_height="match_parent" android:orientation="vertical">
|
|
|
|
<LinearLayout android:background="?articleHeader" android:layout_gravity="center_vertical" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:id="@+id/article_header" android:padding="10dip">
|
|
|
|
<TextView android:singleLine="true" android:layout_weight="1" android:text="TextView" android:layout_height="wrap_content" android:ellipsize="end" android:layout_width="match_parent" android:id="@+id/title" android:textSize="15dip"></TextView>
|
|
|
|
<Button android:text="Close" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/close_button"></Button>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView android:background="?articleDivider" android:paddingTop="2dip" android:layout_weight="0" android:layout_height="wrap_content" android:layout_width="match_parent"></ImageView>
|
|
|
|
<WebView android:layout_weight="0" android:layout_width="match_parent" android:padding="3dip" android:layout_height="match_parent" android:id="@+id/content"></WebView>
|
2011-09-09 11:58:11 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|