52 lines
1.3 KiB
XML
52 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:background="#FFFFFFFF">
|
|
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="right|center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/tv_title"
|
|
android:layout_weight="1.0"
|
|
android:text="WinBoLLNews"
|
|
android:textStyle="bold"
|
|
android:textSize="16sp"/>
|
|
|
|
<Button
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:text="⇦"
|
|
android:id="@+id/widget_button_pre"/>
|
|
|
|
<Button
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:text="⇨"
|
|
android:id="@+id/widget_button_next"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/tv_msg"/>
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:id="@+id/tv_news"
|
|
android:layout_weight="1.0"/>
|
|
|
|
</LinearLayout>
|
|
|