[UI][DetailActivity] Fixed black arrow, now datasheet link is clickable (and displaying correctly)

This commit is contained in:
ChronosX88 2019-02-15 20:28:01 +04:00
parent 666e6b2186
commit e28c083396
No known key found for this signature in database
GPG Key ID: 8F92E090A87804AA
4 changed files with 10 additions and 51 deletions

View File

@ -91,7 +91,7 @@ public class DetailActivity extends AppCompatActivity implements MainContract.It
hashMap.put("Аналоги", tmp);
tmp = intent.getStringExtra("detailDatasheet");
if(!tmp.matches("\\S")) {
if(!(tmp.trim().length() > 0)) {
tmp = "Не указано";
}
hashMap.put("Техническая спецификация", tmp);

View File

@ -5,53 +5,6 @@
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- <LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="wrap_content"
android:layout_height="313dp" />
<android.support.design.widget.TabLayout
android:id="@+id/tabDots"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabBackground="@drawable/tab_selector"
app:tabGravity="center"
app:tabIndicatorHeight="0dp"/>
<TextView
android:id="@+id/itemName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Item Name"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
android:textSize="30sp"
android:layout_marginLeft="9dp"/>
<TextView
android:id="@+id/itemPrice"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Item Price"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
android:textSize="24sp"
android:layout_marginLeft="9dp"/>
<ListView
android:id="@+id/propertiesList"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>-->
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
@ -70,7 +23,7 @@
android:id="@+id/tabDots"
android:layout_width="match_parent"
android:layout_height="62dp"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
app:tabBackground="@drawable/tab_selector"
app:tabGravity="center"
app:tabIndicatorHeight="0dp" />
@ -79,7 +32,8 @@
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/AppTheme" />
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:theme="@style/ItemActionBar"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>

View File

@ -17,5 +17,6 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Property Value"
android:layout_marginLeft="9dp"/>
android:layout_marginLeft="9dp"
android:autoLink="web"/>
</LinearLayout>

View File

@ -14,4 +14,8 @@
<item name="android:background">@android:color/transparent</item>
<item name="background">@android:color/transparent</item>
</style>
<style name="ItemActionBar" parent="ItemActivityTheme">
<item name="android:textColorPrimary">@android:color/white</item>
<item name="android:textColorSecondary">@android:color/white</item>
</style>
</resources>