31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
![]() |
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:id="@+id/ll_information"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="@dimen/details_activity_padding"
|
||
|
android:clickable="true"
|
||
|
android:orientation="vertical"
|
||
|
tools:ignore="UnusedAttribute">
|
||
|
<TextView
|
||
|
android:id="@+id/information"
|
||
|
style="@style/AppDetailsSubheaderText"
|
||
|
android:text="@string/links"
|
||
|
android:drawableRight="@drawable/ic_expand_more_grey600"
|
||
|
android:drawableEnd="@drawable/ic_expand_more_grey600"
|
||
|
android:drawableLeft="@drawable/ic_website"
|
||
|
android:drawableStart="@drawable/ic_website" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/ll_content"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
android:layout_marginLeft="@dimen/layout_horizontal_margin"
|
||
|
android:layout_marginStart="@dimen/layout_horizontal_margin"
|
||
|
android:visibility="gone">
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|