Android Design Layout -


i android market apps design, bright , catchy layout. how has been done? tried put such green semi-circle bar on top transparency on circle, listview not going behind, in market apps listview scrolls behind green bar.

many in advance.

rgds balaji

i don't know want or not may you.

xml layout

<relativelayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".mainactivity">  <listview     android:id="@+id/list"     android:layout_width="match_parent"     android:layout_height="match_parent"/>       <android.support.v7.widget.toolbar         android:id="@+id/my_awesome_toolbar"         android:layout_width="match_parent"         android:layout_height="wrap_content"         android:background="@color/transparent">     </android.support.v7.widget.toolbar> 

in manifest file

<activity         android:name=".mainactivity"         android:label="@string/app_name"         android:theme="@style/theme.appcompat.noactionbar" > 

color.xml

 <color name="transparent">#64000000</color> 

Comments

Popular posts from this blog

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -