画像を表示するImageViewを実装する方法を考えていましたが、新しい画像でコンテンツを更新しているときに、右側に円形のプログレスバーが付いた「読み込み中...」というテキストが表示されるので、コードを記述しました。以下に添付..これは私が望むものを実装する正しい方法ですか?可視性がGONEに設定されている場合、 TextViewとProgressBarを使用したLinearLayoutはリソースを消費しませんか?プログレスバーはありますかそれ自体またはその親レイアウトの可視性がGONEに設定されている場合、それ自体はゼロのリソースを消費します(進行ループの円のアニメーションについて考えています)。INVISIBLEに設定すると、レイアウト管理のために少しのリソースを消費するはずですが、それでも進行状況サークルをアニメーション化するためのリソースを消費するべきではありませんよね?
編集:上記で「リソースを消費しますか」と言った場合、可視性をGONEに設定しただけではビューを解放しないため、明らかにメモリリソースを少し消費するため、CPUリソースを意味します。最初のコメントと最初の回答の後にこのコメントを追加しました。
私のような他の初心者が同じことを実装する方法を考えている場合に備えて、以下のコードが正しいことを願っています。
コードとエミュレーターでの結果を示す画像に従います。
main.xml
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/image_view1"
android:src="@drawable/fish"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:contentDescription="image view 1" />
<LinearLayout
android:id="@+id/layout_progress"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_vertical"
android:background="@drawable/filled_rectangle"
android:gravity="center_vertical|center_horizontal"
android:orientation="horizontal"
android:visibility="gone" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="fill_horizontal"
android:text="Loading..."
android:textSize="30sp"
android:layout_gravity="center_vertical"/>
<!-- style="@android:style/Widget.ProgressBar.Small" -->
<ProgressBar
android:id="@+id/progress_bar1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:indeterminateOnly="true"/>
</LinearLayout>
</FrameLayout>
<Button
android:id="@+id/refresh_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:onClick="onClick"
android:text="@string/refresh_image"/>
</LinearLayout>
drawables /filled_rectangle.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#80000000"/>
</shape>
TestFrameLayoutActivity.java
public class TestFrameLayoutActivity extends Activity {
private int progressVisible;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
LinearLayout layout = (LinearLayout) findViewById(R.id.layout_progress);
progressVisible = (layout.getVisibility() == View.VISIBLE)?1:0;
}
public void onClick (View view) {
progressVisible = 1 - progressVisible;
LinearLayout layout = (LinearLayout) findViewById(R.id.layout_progress);
ImageView img = (ImageView) findViewById(R.id.image_view1);
if (progressVisible == 1) {
layout.setVisibility(ProgressBar.VISIBLE);
} else {
layout.setVisibility(ProgressBar.GONE);
}
}
}