縦長の画像を用意

<ImageButton
    android:id="@+id/button_image"
    android:layout_width="50dp"
    android:layout_height="50dp"
    android:adjustViewBounds="true"
    android:background="@null"
    android:onClick="onClick"
    android:scaleType="fitStart"
/>

fitStart で左寄せ、width でサイズ分のボタン領域になる

※android は実際のクリックが右にずれるらしいので…

     url = new URL( "http://hoge.hoge.hoge/download.zip"));
     URLConnection urlConnection = url.openConnection();
     urlConnection.connect();
     long fileSize = urlConnection.getContentLength();

iphone はデータの無い時も線が出るらしい… ちっ(心の声)

って事で、一行だけで勘弁ね。

<include layout="@layout/list_divider" />
    <TextView
	    android:id="@+id/textView_not_found"
	    android:layout_width="wrap_content"
	    android:layout_height="wrap_content"
	    android:layout_margin="5dp"
	    android:text=""
	    android:textColor="#808080"
	    android:visibility="gone"
	    android:textSize="20sp" />
     <ListView
          android:id="@+id/listView"
          android:layout_width="match_parent"
          android:layout_height="match_parent" >
     </ListView>
<include layout="@layout/list_divider" />

データの有無で切替

hoge.setVisibility(View.VISIBLE);
hogo.setVisibility(View.GONE);
© 2024 Falco Tech Blog Suffusion theme by Sayontan Sinha