Remove site label, Fix displaying site in navbar
Fix heading layout for removal of fake title bar Make instances of reicast url clickable links
This commit is contained in:
parent
55fa2e6577
commit
c684629128
|
@ -34,7 +34,8 @@
|
|||
android:layout_marginTop="10dp"
|
||||
android:ems="12"
|
||||
android:gravity="center"
|
||||
android:text="@string/app_site" />
|
||||
android:text="@string/app_site"
|
||||
android:autoLink="web"/>
|
||||
|
||||
<SlidingDrawer
|
||||
android:id="@+id/slidingGithub"
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
android:id="@+id/game_scroller"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginLeft="6dp"
|
||||
android:layout_weight="1"
|
||||
android:fillViewport="true" >
|
||||
|
||||
|
|
|
@ -6,11 +6,6 @@
|
|||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="2dp"
|
||||
android:background="@drawable/list_item_border" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/childview"
|
||||
android:layout_width="match_parent"
|
||||
|
@ -37,9 +32,16 @@
|
|||
style="@android:style/TextAppearance.Medium"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="6dp"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/disk_loading" />
|
||||
</LinearLayout>
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="2dp"
|
||||
android:layout_marginTop="4dp"
|
||||
android:background="@drawable/list_item_border" />
|
||||
|
||||
</LinearLayout>
|
|
@ -9,25 +9,36 @@
|
|||
android:padding="@dimen/nav_header_padding"
|
||||
android:theme="@style/ThemeOverlay.AppCompat.Dark">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="@dimen/nav_header_vertical_spacing"
|
||||
app:srcCompat="@drawable/ic_launcher" />
|
||||
|
||||
<TextView
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:paddingTop="@dimen/nav_header_vertical_spacing"
|
||||
android:text="@string/app_name"
|
||||
android:textColor="@color/ice_dark"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Body1" />
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:paddingTop="@dimen/nav_header_vertical_spacing">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="@dimen/nav_header_vertical_spacing"
|
||||
app:srcCompat="@drawable/ic_launcher" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:paddingLeft="10dp"
|
||||
android:paddingTop="@dimen/nav_header_vertical_spacing"
|
||||
android:text="@string/app_name"
|
||||
android:gravity="center_vertical"
|
||||
android:textAlignment="gravity"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
||||
android:textColor="@color/ice_dark" />
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/textView"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/app_site"
|
||||
android:autoLink="web"
|
||||
android:textColor="@color/ice_dark" />
|
||||
|
||||
</LinearLayout>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<string name="app_name">reicast</string>
|
||||
|
||||
<string name="app_site">Homepage: http://reicast.com</string>
|
||||
<string name="app_site">http://reicast.com</string>
|
||||
|
||||
<string name="error_kernel"></string>
|
||||
|
||||
|
|
Loading…
Reference in New Issue