我是Android的新手,仍在学习如何完成工作的术语,并对布局提出疑问。
我得到了什么(顶部有额外的空间,黑色背景):
我想要一个带顶栏的布局,包含一些按钮;中间,可滚动;还有一个底栏,里面还有按钮。我目前只实现了部分布局,但我有一个关于将ImageView放在ScrollView中的问题。
这是我的布局XML:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<Button
android:id="@+id/btnPrevious"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Previous" />
<Button
android:id="@+id/btnCurrent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/btnPrevious"
android:text="Current" />
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/btnCurrent"
android:fillViewport="true"
>
<RelativeLayout
android:id="@+id/childOfScrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<com.example.touch.TouchImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="centerInside"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_marginTop="10sp"
android:contentDescription="none"
android:background="#000000"
android:src="@drawable/ic_launcher"
/>
</RelativeLayout>
</ScrollView>
<Button
android:id="@+id/btnExtra"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/scrollView"
android:text="Extra"
/>
</RelativeLayout>
我正在使用URL动态设置Image,如下所示:
image = (ImageView) findViewById(R.id.image);
currentButton = (Button) findViewById(R.id.btnCurrent);
currentButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
String address = ImageAddress.getImageAddress(0);
Bitmap bm = getImageBitmap(address); //
image.setImageBitmap(bm); // where
}
});
// get image bitmap later in my code
private Bitmap getImageBitmap(String url) {
Bitmap bm = null;
try {
URL aURL = new URL(url);
URLConnection conn = aURL.openConnection();
conn.connect();
InputStream is = conn.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is);
bm = BitmapFactory.decodeStream(bis);
bis.close();
is.close();
} catch (IOException e) {
Log.e("Problem", "Error getting bitmap", e);
}
return bm;
}
总结一下,为什么我会在顶部(和底部)获得所有这些额外的引导空间(黑色背景)?
更新
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/btnPrevious"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Previous" />
<Button
android:id="@+id/btnCurrent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Current" />
</LinearLayout>
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:scrollbars="none"
>
<com.example.touch.TouchImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="centerInside"
android:contentDescription="none"
android:background="#000000"
android:src="@drawable/ic_launcher" />
</ScrollView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/btnExtra"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Extra"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="48dp"
android:text="button2" />
</LinearLayout>
</LinearLayout>
答案 0 :(得分:10)
要调整ImageView边界到图像大小包括:
android:adjustViewBounds="true"
这将删除图像周围创建的边距。
答案 1 :(得分:1)
看起来黑色区域可能是背景显示,而图片只是奇怪地居中。
也许您可以尝试更改TouchImageView中的layout_marginTop以使用dp而不是sp。似乎从我读过的sp应该主要用于文本。
类似于:
android:layout_marginTop="10dp"
答案 2 :(得分:1)
尼克是对的。您应该使用dp或dip作为边距。使用sp for android:textSize
使用LinearLayout的建议现在看起来会更好。请尝试以下方法。 :)
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/btnCurrent"
android:fillViewport="true"
>
<LinearLayout
android:id="@+id/childOfScrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center_vertical"
android:layout_gravity="top"
>
<com.example.touch.TouchImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="centerInside"
android:layout_marginTop="10dp"
android:contentDescription="none"
android:background="#000000"
android:src="@drawable/ic_launcher" />
</LinearLayout>
</ScrollView>
答案 3 :(得分:1)
1,顶部区域是动作栏,要隐藏它你可以使用NoActionBar主题或调用
getActionBar().hide();
更新
2,您可以使用LinearLayout:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/btn_download"
android:layout_width="wrap_content"
android:layout_height="48dp"
android:text="button1" />
<Button
android:layout_width="wrap_content"
android:layout_height="48dp"
android:text="button2" />
</LinearLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="centerInside"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_marginTop="10sp"
android:contentDescription="none"
android:background="#000000"
/>
</ScrollView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:layout_width="wrap_content"
android:layout_height="48dp"
android:text="button1" />
<Button
android:layout_width="wrap_content"
android:layout_height="48dp"
android:text="button2" />
</LinearLayout>
</LinearLayout>
的活动:
public class TestActivity extends Activity implements View.OnClickListener {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.test);
mDownloadButton = (Button) findViewById(R.id.btn_download);
mDownloadButton.setOnClickListener(this);
mImageView = (ImageView) findViewById(R.id.image);
}
private Button mDownloadButton;
private ImageView mImageView;
private final String ADDRESS =
"http://images4.fanpop.com/image/photos/14700000/Beautifull-cat-cats-14749885-500-375.jpg";
private static Bitmap getImageBitmap(String url) {
Bitmap bm = null;
try {
URL aURL = new URL(url);
URLConnection conn = aURL.openConnection();
conn.connect();
InputStream is = conn.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is);
bm = BitmapFactory.decodeStream(bis);
bis.close();
is.close();
} catch (IOException e) {
Log.e("Problem", "Error getting bitmap", e);
}
return bm;
}
@Override
public void onClick(View view) {
new FetchBitmapTask().execute(ADDRESS);
}
private class FetchBitmapTask extends AsyncTask<String, Void, Bitmap> {
@Override
protected void onPostExecute(final Bitmap bitmap) {
runOnUiThread(new Runnable() {
@Override
public void run() {
mImageView.setImageBitmap(bitmap);
}
});
}
@Override
protected Bitmap doInBackground(String... strings) {
return getImageBitmap(strings[0]);
}
}
}