android-calculatorpp/calculatorpp/res/layout/history_fragment.xml

24 lines
765 B
XML
Raw Normal View History

2012-09-26 14:50:02 -04:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
a:layout_width="match_parent"
a:layout_height="match_parent"
style="?fragmentLayoutStyle"
a:orientation="vertical">
<TextView a:id="@+id/fragmentTitle"
a:layout_height="wrap_content"
a:layout_width="match_parent"
style="?fragmentTitleStyle"/>
<include layout="@layout/ad"/>
<ListView
a:layout_width="match_parent"
a:layout_height="match_parent"
a:id="@android:id/list"
a:divider="@null"
a:dividerHeight="0dp"
a:cacheColorHint="@android:color/transparent"/>
2012-09-26 10:39:34 -04:00
</LinearLayout>